简介
本文档介绍如何向云中心管理器(CCM)和云中心协调器(CCO)添加代理,以使云中心无需直接连接到互联网即可工作。
问题
要成功部署和运行云中心,强烈建议直接访问互联网以下载软件包。对于私有数据中心或内部网络,需要有HTTP/HTTPS代理服务器才能访问互联网。
解决方案
注意:将配置中的“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"