이 예에서는 Windows 2008 Server에 엔터프라이즈 관리 서버를 설치했습니다. 또한 SSL 지원이 활성화된 엔터프라이즈 관리 서버에 Apache Web Server 버전 2.2.19를 설치해야 합니다. 이제 Apache Web Server 프록시 플러그 인을 구성합니다. 다음 작업을 수행하십시오.
APACHE_HOME/conf
Apache Web Server가 설치된 디렉터리
LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so
Include conf/extra/httpd-proxy-entm.conf
APACHE_HOME/conf/extra
# Proxy to CA AC ENTM
<IfModule proxy_module>
<IfModule proxy_http_module>
# /iam section BEGIN
<Proxy /iam>
Order allow,deny
Allow from all
</Proxy>
ProxyPass /iam http://acentmnode.example.com:8080/iam
ProxyPassReverse /iam http://acentmnode.example.com:8080/iam
ProxyPass /iam/ http://acentm.examplenode.com:8080/iam/
ProxyPassReverse /iam/ http://acentmnode.example.com:8080/iam/
# /iam section END
# /castylesr5.1.1 section BEGIN
<Proxy /castylesr5.1.1>
Order allow,deny
Allow from all
</Proxy>
ProxyPass /castylesr5.1.1 http://acentmnode.example.com:8080/castylesr5.1.1
ProxyPassReverse /castylesr5.1.1 http://acentmnode.example.com:8080/castylesr5.1.1
ProxyPass /castylesr5.1.1/ http://acentmnode.example.com:8080/castylesr5.1.1/
ProxyPassReverse /castylesr5.1.1/ http://acentmnode.example.com:8080/castylesr5.1.1/
# /castylesr5.1.1 section END
</IfModule>
</IfModule>
참고: acentmnode.example.com:port는 엔터프라이즈 관리 서버를 설치한 서버의 실제 호스트 이름과 포트로 대체하십시오.
http://enterprise_host:port/iam/ac
엔터프라이즈 관리 서버에서 Apache Web Server 프록시 플러그 인을 구성했습니다.
| Copyright © 2013 CA. All rights reserved. |
|