CentOS 下 ntp 同步时间
同步时间、写入硬件、错误处理
安装 ntp
- 如果已安装可忽略此步
yum install ntp
时间同步
- 时间同步 & 设置硬件时间
ntpdate pool.ntp.org && hwclock -w
执行结果:
[root@node95 itp-ticketproduct-servicer-ctriporder]# ntpdate pool.ntp.org && hwclock -w
10 Mar 13:58:41 ntpdate[75582]: step time server 78.46.102.180 offset -754.819708 sec
- 如果时间同步出现
10 Mar 13:52:12 ntpdate[31415]: the NTP socket is in use, exiting
错误- 先停止 ntpd
- 再同步时间
- 再启动 ntpd
service ntpd stop
ntpdate pool.ntp.org && hwclock -w
service ntpd start
执行结果:
[root@node95 itp-ticketproduct-servicer-ctriporder]# service ntpd stop
关闭 ntpd: [确定]
[root@node95 itp-ticketproduct-servicer-ctriporder]# ntpdate pool.ntp.org && hwclock -w
10 Mar 13:58:41 ntpdate[75582]: step time server 78.46.102.180 offset -754.819708 sec
[root@node95 itp-ticketproduct-servicer-ctriporder]# date
2020年 03月 10日 星期二 13:58:45 CST
[root@node95 itp-ticketproduct-servicer-ctriporder]# service ntpd start
正在启动 ntpd: [确定]
[root@node95 itp-ticketproduct-servicer-ctriporder]#