我在端口8080上运行Tomcat 6服务器上的应用程序,并且我在端口8180上的JBOSS 7.4.0上运行了单独的应用程序。我需要通过单击tomcat应用程序上的UI从tomcat服务器访问JBOSS应用程序。请帮助如何做到这一点。
到目前为止我已尝试过:
我安装了Apache并从那里使用httpd.conf
属性修改了ProxyPass
文件(端口8080是tomcat,8180是jboss)。所以使用这个我能够重定向到tomcat但不能重定向到Jboss。请帮忙。
ProxyPass /olb/auth/ http://localhost:8080/olb/auth/
ProxyPassReverse /olb/auth/ http://localhost:8080/olb/auth/
ProxyPass /olb/balances/ http://localhost:8080/olb/balances/
ProxyPassReverse /olb/balances/ http://localhost:8080/olb/balances/
ProxyPass /olb/collections/ http://localhost:8180/olb/collections/
ProxyPassReverse /olb/collections/ http://localhost:8180/olb/collections/