我们生产中的服务器很少,它们应该具有与log4j相同的配置,因此,我已将log4j.xml文件移至某些NFS,并创建了如下所示的符号链接:
lrwxrwxrwx 1 tomcat tomcat 54 Aug 15 11:16 log4j.xml -> /storage/www/Configuration/common/tomcat/euc/log4j.xml
由于某些原因,tomcat无法识别它,并且记录器无法正常工作。 谁能建议实现这一目标的方法?
(使用tomcat8和log4j 1.2.17)
答案 0 :(得分:0)
要使tomcat能够跟随符号链接,我发现需要将以下内容添加到context.xml中(我为它添加了../tomcat/conf目录):
<Context>
...
<Resources allowLinking = "true" />
...
</Context>