欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

linux设置服务器定时重启吗,Centos7配置定时重启服务器

发布时间:2024/1/18 47 豆豆
生活随笔 收集整理的这篇文章主要介绍了 linux设置服务器定时重启吗,Centos7配置定时重启服务器 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

Crontab是一个很方便的在unix/linux系统上定时(循环)执行某个任务的程序。

用 service crond status 查看 crond服务状态,如果没有启动则 systemctl start crond.service启动它。

直接编辑crontab文件,vi /etc/crontab,会看到一个crontab的例子:

# Example of job definition:

# .---------------- minute (0 - 59)

# | .------------- hour (0 - 23)

# | | .---------- day of month (1 - 31)

# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...

# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat

# | | | | |

# * * * * * user-name command to be executed

不指定具体的时间用*号替代,用空格区分时间参数,最后是到时要执行的操作。

如:在每天的下午17:01执行一次reboot重启服务器操作 :

1 17 * * * root reboot

然后重启服务

systemctl restart crond.service

总结

以上是生活随笔为你收集整理的linux设置服务器定时重启吗,Centos7配置定时重启服务器的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。