系统相关
首页 > 系统相关> > 校正centos服务器时间

校正centos服务器时间

作者:互联网

1、安装NTP

sudo yum -y install ntp
1
2、使用 ntpdate 测试 NTP

ntpdate pool.ntp.org
1
3、查看服务器时间

date
1
4、启动ntpd daemon,持续校准时间

systemctl start ntpd
1
5、查看ntpd daemon是否启动

[root@localhost ~]# systemctl status ntpd
ntpd.service - Network Time Service
Loaded: loaded (/usr/lib/systemd/system/ntpd.service; disabled; vendor preset: disabled)
Active: active (running) since Mon 2017-09-11 15:37:23 CST; 1h 49min ago
Process: 12142 ExecStart=/usr/sbin/ntpd -u ntp:ntp $OPTIONS (code=exited, status=0/SUCCESS)
Main PID: 12143 (ntpd)
Memory: 624.0K
CGroup: /system.slice/ntpd.service
12143 /usr/sbin/ntpd -u ntp:ntp -g

标签:校正,centos,service,ntp,disabled,usr,ntpdate,服务器,ntpd
来源: https://www.cnblogs.com/zeenzhou/p/16586738.html