Install and Configure Chrony server(NTP) for time adjustment in RHEL/Centos

### Install Chrony. [root@testos ~]# yum -y install chrony ### Edit/Update Chrony Configuration file [root@testos ~]# vi /etc/chrony.conf ### line 3: change servers for synchronization #server 0.centos.pool.ntp.org iburst #server 1.centos.pool.ntp.org iburst #server 2.centos.pool.ntp.org iburst #server 3.centos.pool.ntp.org iburst server <NTP1 SERVER ADDRESS> iburst server <NTP2 SERVER ADDRESS> iburst server <NTP3 SERVER ADDRESS> iburst ### line 25: … Read more

Install and Configure NTP server for time adjustment in RHEL/Centos

### Install NTPd. [root@testos ~]# yum -y install ntp ### Edit/Update NTP Configuration file [root@testos ~]# vi /etc/ntp.conf ### line 18: add the network range you allow to receive requests restrict 10.0.0.0 mask 255.255.255.0 nomodify notrap ### change servers for synchronization ### change servers for synchronization #server 0.centos.pool.ntp.org iburst #server 1.centos.pool.ntp.org iburst #server 2.centos.pool.ntp.org iburst … Read more