0

我有一个连接器定义为:

<Connector protocol="AJP/1.3" enableLookups="false" tomcatAuthentication="false"        scheme="https" 
    secure="true" 
    address="127.0.0.1" 
    port="8009" />

但是,request.getRemoteUser 返回 null。

我的问题是如何让 Apache 记录它发送到 Tomcat 的“所有内容”?我将 apache 和 mod_jk 日志级别设置为“调试”。

任何指针将不胜感激。

4

1 回答 1

0

启用mod_jk日志应该可以解决问题:

# Where to put jk logs
JkLogFile     /var/log/httpd/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel    debug

希望有帮助。

于 2011-11-14T03:33:43.073 回答