前言
略
nginx日志切割
- 将日志文件重命名。
- nginx重载配置文件。
- 添加定时任务。
PS:ngxin 在 linux中,会按天切割日志。如果想要随时切割日志,同理。
nginx重载配置文件命令
nginx.exe -s reopen
windows日志切割
将下面的文件保存为bat文件:
set nginxBinPath=d:\nginx
set nginxLogPath=d:\nginx\logs
set timstamp=%date:~0,4%-%date:~5,2%-%date:~8,2%_%time:~0,2%%time:~3,2%%time:~6,2%cd /d %nginxLogPath%
move access.log access_%timstamp%.log
move error.log error_%timstamp%.logcd /d %nginxBinPath%
nginx -s reload
测试通过后,添加任务计划程序
中进行执行。