如何在Centos7中创建预定重启,我想在下午4点每天重启我的Centos7服务器
答案 0 :(得分:3)
请尝试以下命令。它将在夜间重启计算机。
关闭-r 0:00
同样可以添加以下行/ etc / crontab
0 0 * * * / sbin / shutdown -r now
答案 1 :(得分:0)
打开crontab配置文件
vim /etc/crontab
将以下行放在crontab
中0 16 * * * /usr/sbin/reboot
或者 crontab -e
把上面一行
0 16 * * * /usr/sbin/reboot
并重新启动crontab
systemctl restart crond.service