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.
设置 cron 令人困惑,虽然我设法将它设置为每小时运行一次,但我不太清楚如何更改为每 10 分钟运行一次。这是管理面板中的 UI:
不确定特定的 UI 界面允许什么...但如果您可以多选(按住“ctrl”并单击其他分钟)...那么只需选择 0,10,20,30,40,50
如果您有权实际编辑 REAL crontab 命令...格式如下:
0,10,20,30,40,50 * * * * /path/to/command
或者......为了简化这一点,“更好”的方式是这样的:
*/10 * * * * /path/to/command
Cron 应该是这样的:
*/10 * * * * /home/backup.sh
如果您有权访问服务器外壳,请使用以下命令:
$ crontab -e
请参阅: Cronjob 每分钟