OracleLinux是没有cron命令的也没有cron软件包
那当我们遇到使用曾经为CentOS编写的脚本时便会出错
如何解决这个问题呢?
一: 使用yum安装cronie软件包
sudo yum install cronie
#设置后台任务
sudo systemctl start crond && sudo systemctl enable crond
#验证cron服务状态
sudo systemctl status crond
二: 建立cron到crond的软链接
ln -s /usr/sbin/crond /usr/bin/cron
或者,如果符号链接存在但指向错误的程序,你可以更新它的目标
ln -sf /usr/sbin/crond /usr/bin/cron
评论 (0)