logrotate 회전 실패, 루트 사용자 권한이 거부됨

logrotate 회전 실패, 루트 사용자 권한이 거부됨

머리를 감쌀 수 없는 문제가 있습니다. 내 앱 로그를 회전하기 위해 centos 7 서버에 logrotate를 설정했습니다.

이 파일은 /etc/cron.daily에 있습니다(루트로 실행되고 있는지 확인하기 위해 whoami도 추가했습니다).

#!/bin/sh

whoami

/usr/sbin/logrotate -v /etc/logrotate.d/myapp
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0

이것은 내 logrotate 구성을 실행합니다 ...

"/opt/myapp/log/*.log" {
  daily
  create 644 root root
  rotate 5
  size 20M
  copytruncate
  missingok
  notifempty
  compress
}

여기 내 로그 디렉토리가 있습니다 ...

[root@server log]# ls -la
total 97684
drwxr-xr-x. 3 root root      4096 Sep 28 12:41 .
drwxr-xr-x. 5 root root      4096 Sep 27 20:57 ..
-rw-r--r--. 1 root root 100015457 Sep 28 12:36 myapp.log

루트로 수동으로 실행할 때마다 로그가 회전하지만 cron을 통해 실행하면 실패합니다. 보낸 메일은 이렇습니다...

From root@server  Thu Sep 28 12:30:02 2017
Return-Path: <root@server>
X-Original-To: root
Delivered-To: root@server
Received: by server (Postfix, from userid 0)
        id 9C82B419; Thu, 28 Sep 2017 12:30:02 -0500 (CDT)
From: "(Cron Daemon)" <root@server>
To: root@server
Subject: Cron <root@server> run-parts /etc/cron.daily
Content-Type: text/plain; charset=UTF-8
Auto-Submitted: auto-generated
Precedence: bulk
X-Cron-Env: <XDG_SESSION_ID=10746>
X-Cron-Env: <XDG_RUNTIME_DIR=/run/user/0>
X-Cron-Env: <LANG=en_US.UTF-8>
X-Cron-Env: <SHELL=/bin/bash>
X-Cron-Env: <PATH=/sbin:/bin:/usr/sbin:/usr/bin>
X-Cron-Env: <MAILTO=root>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <LOGNAME=root>
X-Cron-Env: <USER=root>
Message-Id: <20170928173002.9C82B419@server>
Date: Thu, 28 Sep 2017 12:30:01 -0500 (CDT)
/etc/cron.daily/myapp:

root <<<<<<<<< whoami output
reading config file /etc/logrotate.d/myapp
Handling 1 logs
rotating pattern: /opt/myapp/log/*.log  20971520 bytes (5 rotations)
empty log files are not rotated, old logs are removed
considering log /opt/myapp/log/myapp.log
  log needs rotating
rotating log /opt/myapp/log/myapp.log, log->rotateCount is 5
error: error opening /opt/myapp/log/myapp.log: Permission denied
set default create context

누구든지 이 문제를 겪은 적이 있거나 이 문제의 원인이 무엇인지 아는 사람이 있습니까?

답변1

이는 SELinux 문제인 것으로 밝혀졌습니다. 파일 컨텍스트는 logrotate가 액세스할 수 있는 컨텍스트가 아니었기 때문에 반복적으로 액세스가 거부되었습니다.

이 답변은 여기를 참조하십시오.SELinux fcontext

관련 정보