1

我想在Linux环境下用mod_jk配置Apache2和tomcat7..我想知道步骤..请帮我配置它...

4

2 回答 2

0

你自己尝试过什么吗?

http://tomcat.apache.org/connectors-doc/generic_howto/quick.html应该可以帮助您。但是,如果您还没有尝试过任何事情,那么我们该如何帮助您呢?让用户知道是否有任何特定的问题,包括错误消息等。

于 2013-01-02T06:53:49.410 回答
0

您必须为 apache 进行配置(我使用 CentOS)。第一个文件在 /etc/httpd/conf/wokers.properties 下

# the name tomcat1 is variable
worker.list=tomcat1
# default ajp port on server.xml of tomcat
worker.tomcat1.port=8009
worker.tomcat1.host=localhost
worker.tomcat1.type=ajp13
worker.tocmat1.socket_timeout=200
worker.tomcat1.retries=1

第二个文件取决于是全局还是要为虚拟主机定制。以下示例基于虚拟主机 (/etc/httpd/conf/virtualhost.conf)

JkWorkersFile "/etc/httpd/conf/workers.properties
JkLogFile /var/log/httpd/jk.log
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkLogLevel info

# mount all under URI /
JkMount /* tomcat1

# umount /robots.txt, request goes to apache document root
JkMount /robots.txt tomcat1
于 2015-09-08T13:51:16.047 回答