我有一个连接器定义为:
<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日志级别设置为'debug'。
任何指针都将受到高度赞赏。
答案 0 :(得分: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
希望有所帮助。