Weblogic中有一个选项可以防止启动期间受管服务器的日志轮换 - 是否有办法防止server.out文件被轮换?
我利用logrotate来处理server.out文件的旋转和压缩,这很好很干净。但是,如果重新启动受管服务器,则会旋转.out文件,然后最终使用servername_MS_01.out0000?/ servername_MS_02.out0000?文件。我已经添加了logrotate旋转这些文件的功能,但我更喜欢在托管服务器上重新启动旋转.out文件,所以我可以有一个每日压缩文件。
提前感谢任何见解。
答案 0 :(得分:0)
编辑<weblogic home>/common/bin/wlscontrol.sh
文件。您将看到包含以下注释的部分:
#
# Rotate the specified log file. Rotated log files are named
# <server-name>.outXXXXX where XXXXX is the current log count and the
# highest is the most recent. The log count starts at 00001 then cycles
# again if it reaches 99999.
#
save_log()
{
您可以更改该功能以执行任何操作,或者只是注释掉mv
命令,以便它不会重命名/移动文件。
您可能会发现此主题也很有用。 Rotating .out files