apache 2.4有两个带有weblogic wl.so的VirtualHost

时间:2018-07-21 08:59:33

标签: apache

我将apapche 2.4与weblogci 12c wl_24.so一起使用。我这样配置http-vhost.conf: 一个使用apache代理,另一个使用wl代理;

<VirtualHost *:8444>
ServerName test.com
<Location /WechatBank>
 <IfModule mod_weblogic.c>
 WeblogicHost wxapp
 WeblogicPort 9091
 ConnectTimeoutSecs 49
 MatchExpression *.html
 WLLogFile       /home/wxapache/admin/tmp/proxy.log
 WLTempDir       "/home/wxapache/admin/proxy_tmp/"
 </IfModule>
</Location>
ErrorLog "logs/error_8444_log"
CustomLog "logs/access_8444_log" common
</VirtualHost>

<VirtualHost *:8443>
    ServerName test.com
#   ProxyPreserveHost On
#   ProxyRequests On
    ProxyPass /wap http://wxapp:8443/wap

      ProxyPassReverse /dmap-web http://wxapp2:8082/dmap-web
    ErrorLog "logs/error_8443_log"
    CustomLog "logs/access8443__log" common
</VirtualHost>

我访问了8443个帖子,例如http://ip:8443/wap 得到错误

[Sat Jul 21 15:33:48.876784 2018] [weblogic:error] [pid 30191:tid 1364146496] [client 158.58.12.180:54688] <30191153215842817> *******Exception type [CONFIG_ERROR] (Neither 'WebLogicCluster' nor 'WebLogicHost' specified in parameters\n) raised at line 2142 of ApacheProxy.cpp
[Sat Jul 21 15:33:48.876847 2018] [weblogic:error] [pid 30191:tid 1364146496] [client 158.58.12.180:54688] CONFIG_ERROR [line 2142 of ApacheProxy.cpp]: Neither 'WebLogicCluster' nor 'WebLogicHost' specified in parameters\n

8443端口用户apache代理,不使用weblogic代理,为什么出现此错误?     ================================================== =====================

=

0 个答案:

没有答案