我正在尝试使用下面给出的表达式运行crontab。但是我收到了严重的分钟错误。
这是针对Linux服务器的。
0/5 * * * * /home/cdh_infa_user/data/pladmin/MyLinuxAgent/apps/Data_Integration_Server/data/scripts/Secureagent.sh
我需要安装crontab吗?请指导 enter image description here enter image description here
答案 0 :(得分:1)
要每5分钟运行一次cron,您需要添加以下命令:
*/5 * * * * /home/cdh_infa_user/data/pladmin/MyLinuxAgent/apps/Data_Integration_Server/data/scripts/Secureagent.sh
要每天5点运行cron,您需要这样的记录:
0 5 * * * /home/cdh_infa_user/data/pladmin/MyLinuxAgent/apps/Data_Integration_Server/data/scripts/Secureagent.sh