簡介
本檔案介紹如何將代理新增到Cloud Center Manager(CCM)和Cloud Center Orchestrator(CCO),以允許Cloud Center在沒有直接連線到網際網路的情況下工作。
問題
要成功部署和運行Cloud Center,強烈建議為軟體包下載提供直接網際網路訪問。在專用資料中心或內部網路的情況下,需要具有HTTP/HTTPS代理伺服器才能訪問Internet。
解決方案
附註:將配置中的「proxyserver.com」替換為代理伺服器地址。
在環境中安裝:
http_proxy=http://proxyserver.com:80
export http_proxy
https_proxy=https://proxyserver.com:80
export https_proxy
編輯yum.conf:
vi /etc/yum.conf
http_proxy=http://proxyserver.com:80
https_proxy=https://proxyserver.com:80
編輯Tomcat環境:
vi /usr/local/tomcat/bin/setenv.sh
export JAVA_OPTS="-Dhttp.proxySet=true -Dhttp.proxyHost=proxyserver.com -Dhttp.proxyPort=80 -Dhttps.proxySet=true -DhttpsHost=proxyserver.com -Dhttps.proxyPort=80"