我有一个在 apache 2.2 http 服务器指向的 tomcat 服务器上运行的 grails 应用程序。使用 mod_jk 我已经使用 myapp.com:9090 来访问应用程序。然而 myapp.com 只是给了我 503 错误:
“无法可靠地确定服务器的完全限定域名,使用 193.xx.xxx.xxx 作为 ServerName。”
但这是我得到的唯一错误。虚拟主机如下所示:
<VirtualHost 193.xx.xxx.xxx:80>
ServerName www.myapp.se
ServerAlias myapp.se
DocumentRoot "D:/apache-tomcat-7.0.5/webapps/ROOT"
JkMount /* worker1
</VirtualHost>
在 httpd.conf 中,我像这样加载模块:
# Load module
LoadModule jk_module modules/mod_jk.so
# Where to find workers.properties
JkWorkersFile conf/workers.properties
# Where to put jk logs
JkLogFile logs/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel emerg
# Select the log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# JkOptions indicate to send SSL KEY SIZE,
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
# JkRequestLogFormat set the request format
JkRequestLogFormat "%w %V %T"
worker.properties 看起来像这样:
workers.tomcat_home="D:/apache-tomcat-7.0.5"
workers.java_home="C:/Program Files/Java/jdk1.6.0_22"
ps=/
worker.list=worker1
worker.worker1.port=8010
worker.worker1.host=localhost
worker.worker1.type=ajp13
worker.worker1.lbfactor=1