我是靠谱客的博主 自然小虾米,这篇文章主要介绍Logrotate日志切割报错 文件不再同一个用户组下,现在分享给大家,希望可以做个参考。

分割日志时报错:

复制代码
1
2
3
4
error: skipping "/var/log/nginx/test.access.log" because parent directory has insecure permissions (It's world writable or writable by group which is not "root") Set "su" directive in config file to tell logrotate which user/group should be used for rotation.

xx 文件所属用户

添加“su root xx”到/etc/logrotate.d/nginx文件中即可
如下;

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/var/log/nginx/*.log { su root public daily missingok rotate 52 compress delaycompress notifempty #ifempty create 0640 www-data adm sharedscripts postrotate [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid` endscript }

最后

以上就是自然小虾米最近收集整理的关于Logrotate日志切割报错 文件不再同一个用户组下的全部内容,更多相关Logrotate日志切割报错内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部