tengine logrotate 保留一个月的日志,文件最大为5MB
时间: 2023-02-08 22:13:01 浏览: 241
要使用logrotate保留一个月的tengine日志且文件大小最大为5MB,可以在logrotate配置文件中添加如下内容:
```
/path/to/tengine/log/*.log {
monthly
rotate 30
size 5MB
compress
delaycompress
missingok
notifempty
}
```
说明:
- `/path/to/tengine/log/*.log`:tengine日志文件的路径和文件名。
- `monthly`:按月进行归档。
- `rotate 30`:保留30个归档文件。
- `size 5MB`:文件大小限制为5MB。
- `compress`:对归档文件进行压缩。
- `delaycompress`:延迟压缩上一个归档文件。
- `missingok`:如果文件不存在,不报错。
- `notifempty`:即使文件为空,也进行归档。
配置完成后,运行`logrotate`命令使配置生效
相关问题
tengine2.3.3只保留1个月的日志,并且日志文件最大为5MB,包括access.log和error.log
Tengine 2.3.3可以通过配置nginx.conf文件来实现只保留1个月的日志,并且日志文件最大为5MB。具体配置如下:
- 在http模块中添加 log_format 来指定日志格式,如:
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
- 在server模块中添加access_log来记录访问日志,如:
access_log /var/log/nginx/access.log main;
- 在server模块中添加error_log来记录错误日志,如:
error_log /var/log/nginx/error.log;
修改完成后,可使用 logrotate来实现保留一个月的日志,并且限制文件大小为5MB。具体配置可以看这个网页,https://www.cnblogs.com/YBMX/p/11532712.html
tengine2.3.3生成的日志以这种格式结尾2022-01-01 15:00:00.000,每个日志最大5MB,自动清理1个月以前的日志,日志包括access和error日志,给出详细配置教程
Tengine是一个高性能的Web服务器,您可以通过以下步骤来配置Tengine的日志:
1. 修改Tengine的配置文件nginx.conf,在http块里添加以下配置:
```
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /path/to/access.log main;
error_log /path/to/error.log notice;
```
这样就可以在/path/to/access.log和/path/to/error.log文件里分别记录access和error日志了
2. 添加如下配置修改日志的格式,
```
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" $msec';
access_log /path/to/access.log main;
```
3. 配置自动清理一个月前的日志,可以使用linux的cron来实现,比如:
```
59 23 28 * * root find /path/to/log -mtime +30 -name "access.log*" -exec rm -f {} \;
```
这样就可以在每月的28号的23:59分执行删除/path/to/log文件夹下一个月前access.log开头的文件了
4. 设置日志每个文件最大为5MB,可以使用linux的logrotate工具,添加配置文件如下:
```
/path/to/access.log {
size 5M
rotate 10
missingok
notifempty
compress
delaycompress
copytruncate
}
```
这样就可以在access.log文件超过5MB时,使用rotate 10进行分割,并压缩为.gz
阅读全文