在更改crontab文件后重新启动cron?
更改crontable文件后,我是否必须重新启动cron?
没有。
从cron手册页:
... cron然后将检查所有crontabs上的修改时间并重新加载已更改的那些时间。 因此,无论何时修改crontab文件,都不需要重新启动cron
但是如果你只是想确保它完成了它,
sudo service cron reload
要么
/etc/init.d/cron reload
在CentOS上用cPanel sudo /etc/init.d/crond reload
做到这一点。
在CentOS7上: sudo systemctl start crond.service
我在16.04 VPS数字海洋上遇到类似问题。 如果您要更改crontabs,请确保运行
sudo service cron restart
链接地址: http://www.djcxy.com/p/66341.html