次の構成があります。
バージョン 2.2.14 の 1 つの Apache サーバー。
ドメイン モードで JBoss Application Server バージョン 7.1.1 を使用する 2 つのアプリケーション サーバー。
仮想ホストを構成し、mod_cluster は問題なくアプリケーション サーバーを検出しますが、ssl の構成を追加すると、mod_cluster はアプリケーション サーバーを検出できません。
ファイル httpd-vhosts.conf は次のとおりです。
Listen <ip>:10001
MemManagerFile /var/cache/httpd
<VirtualHost <ip>:10001>
ErrorLog "/usr/IBMAHS/logs/error_ssl_log"
TransferLog "/usr/IBMAHS/logs/access_ssl_log"
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile "/usr/IBMAHS/pki/file.com.crt"
SSLCertificateKeyFile "/usr/IBMAHS/pki/file.com.key"
<Directory />
Order deny,allow
Allow from all
</Directory>
KeepAliveTimeout 60
MaxKeepAliveRequests 0
ManagerBalancerName other-server-group_d
ServerAdvertise On
AdvertiseFrequency 5
#EnableMCPMReceive
#This directive allows you to view mod_cluster status at URL http://<ip>:10001/mod_cluster-manager
<Location /mod_cluster-manager>
SetHandler mod_cluster-manager
Order deny,allow
Allow from all
</Location>
</VirtualHost>
誰でも私を助けることができますか?