同步NTP 服务器时间错误:Updating Time : ntpdate[3108]: the NTP socket is in use, exiting

若自己搭建了NTP服务器后,想在其他的Linux机器上执行ntpdate ntp [ntpserver地址] 时,发现出现如下的错误:

31 Aug 19:05:55 ntpdate[8911]: the NTP socket is in use, exiting
此时是因为如下的原因:

t's in use because the ntp service is probably running. You did not mention which Linux you are using so this assumes you have service installed (that you are running a System V system):

$ sudo ntpdate pool.ntp.org
31 Aug 19:05:55 ntpdate[8911]: the NTP socket is in use, exiting
$ sudo service ntp stop
[ ok ] Stopping NTP server: ntpd.
$ sudo ntpdate pool.ntp.org
31 Aug 19:07:11 ntpdate[10355]: adjust time server 46.29.176.115 offset -0.002893 sec
$ sudo service ntp start
link:http://superuser.com/questions/639202/updating-time-ntpdate3108-the-ntp-socket-is-in-use-exiting

你可能感兴趣的:(Linux)