6

我正在为我的博客使用 Wordpress,我的主要项目是使用 tomcat 服务器在 java 中,所以我希望到达我的服务器的每个请求都通过 apache。

例如,如果我的网站使用www.sample.com我想将请求发送到 tomcat,如果它是www.sample.com/wordpress发送到 apache

谢谢

4

2 回答 2

11

安装 modjk:

sudo apt-get install libapache2-mod-jk
sudo a2enmod jk

创建workers.properties文件:

worker.list=tomcat,tstatus
worker.tomcat.type=ajp13
worker.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.properties
JkLogFile       /var/log/apache2/mod_jk.log  
JkShmFile       /tmp/jk-runtime-status
JkLogLevel      info

JkMount /YourJavaAppName       tomcat
JkMount /YourJavaAppName/*     tomcat

JkMount /modjkstatus tstatus

现在您应该可以访问:

http://YOUR-IP/wordpress
http://YOUR-IP/YourJavaAppName (redirected)
http://YOUR-IP/modjkstatus (redirected)
于 2013-05-17T16:44:44.697 回答
3

这些步骤用于在 RHEL/Centos 中安装它,Stefan 的回答中的其他内容保持不变

#Install httpd
sudo yum install httpd
#Check if the httpd -l command has mod_so.jk.

sudo yum install httpd-devel
sudo yum install gcc
sudo yum install libtool

wget http://supergsego.com/apache/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.41-src.tar.gz

tar -xvf tomcat-connectors-1.2.41-src.tar.gz
cd tomcat-connectors-1.2.41-src
cd native

./configure -with-apxs=/usr/sbin/apxs 
make

#Now use libtool to move the mod_jk.so to /etc/httpd/modules
#You are probably good to go now.
于 2015-08-21T10:31:35.817 回答