Brook crontab定时重启

以下同步时间选择其中一种,如果无法同步本地时间请google下(关键字centos7或者centos6或者debian时间同步本地时间等关键字)
方法1.校准时间同步本地时间 date -R 查看vps时间 sudo -i root权限进入

1
2
3
yum -y install ntp ntpdate   //安装ntpdate工具
ntpdate cn.pool.ntp.org //设置系统时间与本地网络时间同步
hwclock --systohc //将系统时间写入硬件时间

方法2.校准时间同步本地时间 date -R 查看vps时间

1
2
3
4
5
6
yum install ntp                //安装ntp服务
systemctl enable ntpd //开机启动服务
systemctl start ntpd //启动服务
timedatectl set-timezone Asia/Shanghai //更改时区
timedatectl set-ntp yes //启用ntp同步
ntpq -p //同步时间

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×