我希望每个请求到我的服务器都能通过apache.
例如,如果我的网站使用www.sample.com,我想将请求发送给tomcat
如果它是www.sample.com/wordpress发送到apache
谢谢
解决方法 安装modjk:sudo apt-get install libapache2-mod-jksudo a2enmod jk
创建workers.propertIEs文件:
worker.List=tomcat,tstatusworker.tomcat.type=ajp13worker.tomcat.host=[TOMCAT-IP HERE]worker.tomcat.port=[TOMCAT-AJP-PORT HERE]#status information (optional)worker.tstatus.type=status
将其添加到httpd.conf:
JkWorkersfile /PATH-TO-YOUR-file/workers.propertIEsJkLogfile /var/log/apache2/mod_jk.log JkShmfile /tmp/jk-runtime-statusJkLogLevel infoJkMount /YourJavaAppname tomcatJkMount /YourJavaAppname/* tomcatJkMount /modjkstatus tstatus
现在您应该能够访问:
http://YOUR-IP/wordpresshttp://YOUR-IP/YourJavaAppname (redirected)http://YOUR-IP/modjkstatus (redirected)总结
以上是内存溢出为你收集整理的在linux上安装Mod_jk以在tomcat前运行apache的最佳方法是什么?全部内容,希望文章能够帮你解决在linux上安装Mod_jk以在tomcat前运行apache的最佳方法是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)