美文网首页
Centos7 计划定时重启

Centos7 计划定时重启

作者: broeeee | 来源:发表于2020-05-27 21:29 被阅读0次

ROOT

  1. 编辑配置
vi /etc/crontab
  1. 设置重启时间
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
 
# For details see man 4 crontabs
 
# 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
10 05 * * * root reboot #每天凌晨5点10分重启系统  //北京时间
10 20 * * * root reboot #每天晚上20点10分重启系统 //美国时间
10 20 * * 2,4,6 root reboot #每周的周二,周四,周六晚上20:10重启
  1. 加载
#root下才能执行
crontab /etc/crontab
  1. 设置开机启动
systemctl enable crond.service #开启启动
systemctl restart crond.service #重启服务
  1. 查看定时配置
crontab -l
  • 查看系统重启情况
last reboot
who -b

相关文章

  • Centos7 计划定时重启

    ROOT 编辑配置 设置重启时间 加载 设置开机启动 查看定时配置 查看系统重启情况

  • 定时启动docker容器

    对于一些不稳定又难于定位的问题的服务,可以定时重启下,这是最简单的办法。 创建定时任务(centos7) 查看定时...

  • 必虎WiFi V2.3版本详细说明

    1、增加设备和分组定时重启功能。 (1)设备定时重启 (2)分组定时重启 2、增加离线设备解绑功能。 离线设备增加...

  • Centos7配置定时重启服务器

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

  • 修改Tomcat标题

    由于在用的tomcat服务启动后长时间不重启就会有问题,所以决定要做个计划任务,每天定时重启来解决。这一点在lin...

  • linux命令

    centos7启动防火墙 centos7停止防火墙/关闭防火墙 centos7重启防火墙 注意:新增/删除操作需要...

  • Linux定时执行shell

    定时检测进程挂了,然后重启 一、准备脚本 如果端口不存在了, 则重启服务 二、添加定时任务 Linux cront...

  • crontab 定时重启

    crontal -e 添加命令0 */6 * * * /sbin/init 6 >/dev/null 2>&1

  • windows定时重启

    先准备好脚本restart.bat 新建一个txt,写入shutdown shutdown -s -t 10 十秒...

  • WinServer 定时重启

    开始——管理——计划任务程序; 创建任务——设置“名称”; 切换“触发器”页面——“新建”——设置具体的执行时间;...

网友评论

      本文标题:Centos7 计划定时重启

      本文链接:https://www.haomeiwen.com/subject/fpbgahtx.html