I have a problem.
Time on server not synchronized.
And it seems that this problem was appear after I set my rules for iptables, which I described here May be I'm wrong and these two events are not related...
CentOS 7.1
ntpd 4.2.6p5
/var/log/messages
May 25 16:48:49 CentOS-70-64-minimal ntpd[26771]: ntpd 4.2.6p5@1.2349-o Sat Dec 20 02:38:09 UTC 2014 (1)
May 25 16:48:49 CentOS-70-64-minimal ntpd[26771]: proto: precision = 0.046 usec
May 25 16:48:49 CentOS-70-64-minimal ntpd[26771]: 0.0.0.0 c01d 0d kern kernel time sync enabled
May 25 16:48:49 CentOS-70-64-minimal ntpd[26771]: unable to bind to wildcard address 0.0.0.0 - another process may be running - EXITING
ntp.conf
driftfile /var/lib/ntp/drift
restrict default nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict ::1
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
disable monitor
server ntp1.hetzner.de iburst
server ntp2.hetzner.com iburst
server ntp3.hetzner.net iburst
EDIT
netstat -lanp | grep ':123'
udp 0 0 5.9.152.9:123 0.0.0.0:* 24483/ntpd
udp 0 0 127.0.0.1:123 0.0.0.0:* 24483/ntpd
udp 0 0 0.0.0.0:123 0.0.0.0:* 24483/ntpd
udp6 0 0 2a01:4f8:190:4008:::123 :::* 24483/ntpd
udp6 0 0 fe80::3285:a9ff:fee:123 :::* 24483/ntpd
udp6 0 0 ::1:123 :::* 24483/ntpd
udp6 0 0 :::123 :::* 24483/ntpd
EDIT 2
This problem became more shadow for me...
service ntpd status
Redirecting to /bin/systemctl status ntpd.service
ntpd.service - Network Time Service
Loaded: loaded (/usr/lib/systemd/system/ntpd.service; disabled)
Active: inactive (dead)
systemctl list-unit-files | grep 'ntp'
ntpd.service disabled
ntpdate.service disabled
netstat -nlap | grep 'ntpd'
udp 0 0 5.9.152.9:123 0.0.0.0:* 3588/ntpd
udp 0 0 127.0.0.1:123 0.0.0.0:* 3588/ntpd
udp 0 0 0.0.0.0:123 0.0.0.0:* 3588/ntpd
udp6 0 0 2a01:4f8:190:4008:::123 :::* 3588/ntpd
udp6 0 0 fe80::3285:a9ff:fee:123 :::* 3588/ntpd
udp6 0 0 ::1:123 :::* 3588/ntpd
udp6 0 0 :::123 :::* 3588/ntpd
unix 2 [ ] DGRAM 34224 3588/ntpd
How it can listen port if ntpd disabled....