Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经通过 cpanel 为 linux 服务器设置了 cronjob 并且它工作正常。但是现在我有一个没有 cpanel 的 linux 服务器。所以对于这个cpanel,我必须设置cronjob,但是没有cpanel怎么做,请指导我。提前致谢。
crontab -e从命令行将允许您编辑用户的 cron 选项卡。
crontab -e
该文件的语法在文件和在线描述
只需将您的 crontab 添加到 /etc/cron.d/ 目录,例如:
将此行文本写入文件(您可以为该文件命名任何您喜欢的名称)并将其保存到/etc/cron.d/:
/etc/cron.d/
0 */4 * * * root /path/to/script.sh
每 4 小时执行一次script.sh。root
script.sh
root