我正在使用启用了 SELinux 的 CENTOS 7。服务器有root帐户和1个用户帐户,一般来说,我使用root访问并做所有事情。
今天我尝试使用以下命令配置每天晚上运行的 cron 作业
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
========== Job 1 - Clear the access log ===========
55 23 * * * root truncate -s 0 /var/log/phpweb-datasync-access.log >/dev/null 2>&1
# ======== Job 2 Delete temp download photo from php web site===================
57 23 * * * root find /app/photo_store/ -mtime +1 -exec rm -f {} \; >/dev/null 2>&1
# ======== Job 3 Restart httpd Server ===========
59 23 * * * root sudo service httpd restart >/dev/null 2>&1
一切正常,但我很好奇我真的需要在 Job 3 中使用 sudo 吗?万一我尝试在终端中运行“service httpd restart”,它没有权限问题,但我看到一些教程网站上的 cron 作业示例也有“sudo”。