1.给脚本可执行权限
chmod u+x crontab-log.sh
执行的脚本文件必须要有对应用户的执行权限
2.添加任务
crontab -e
*/1 * * * * /data/ggzy/redis-cluster/7004/crontab-log.sh
查看已添加的任务
crontab -l
3.重启定时任务或重新加载
systemctl restart crond #重启定时任务
systemctl reload crond #重新加载
4.任务执行失败,查看定时任务日志
查看执行日志 cat /var/log/cron
5.解决
修改 /etc/postfix/main.cf 文件
- 将 inet_interfaces = localhost 这一行注释
- 打开 inet_interfaces = all 这一行
- 执行 service postfix start 命令
6. 重新测试定时任务并查看日志
不在报错,任务执行成功。
注:当用定时任务执行shell脚本文件需获取或操作目录信息时,建议脚本里面先cd到脚本目录
其他命令
#查看服务状态
systemctl status crond
#启动
systemctl start crond
#停止
systemctl stop crond
#重启
systemctl restart crond
#重新加载
systemctl reload crond
#开机启动crontab服务
systemctl start crond