Linux 设置定时重启

Published on in 系统 with 0 views and 0 comments

准备工作

  • 如果不太清楚当前的Linux系统是否支持crontab,就执行如下命令
yum install crontab
  • 执行如下命令,查看当前的已经存在的定时任务
crontab -l

如果提示:no crontab for root,说明没有定时任务

添加定时重启任务

  • 执行 crontab -e 命令添加
# 每天凌晨2点30进行重启
30 02 * * * /sbin/reboot 
  • crontab 格式说明:
    20190530145732532.png

  • 重启 crontab

systemctl restart crond

标题:Linux 设置定时重启
作者:dduan
地址:https://dduan.site/articles/2019/10/29/1572343601696.html