错误:创建输出文件 /var/lib/logrotate.status.tmp 时出错:权限被拒绝

错误:创建输出文件 /var/lib/logrotate.status.tmp 时出错:权限被拒绝

我正在尝试轮转我的日志文件。这是我的配置文件:

/home/deploy/apps/production_app/current/log/*.log {
    daily
    missingok
    rotate 52
    compress
    create 0644 deploy deploy
    delaycompress
    notifempty
    sharedscripts
    copytruncate
}

这是结果

ll 应用程序/production_app/current/log/

在我的日志文件中:

-rw-rw-r-- 1 deploy deploy        0 Jul  1 10:01 production.log
-rw-rw-r-- 1 deploy deploy  1124555 Jul  1 10:01 production.log.1

当我运行这个命令时

logrotate -v /etc/logrotate.d/production_app

我得到以下信息:

错误:创建输出文件 /var/lib/logrotate.status.tmp 时出错:权限被拒绝

相关内容