時間同步服務器配置

.時間同步

之前時間同步一直有用到,但是一直沒有自己搭建一個時間同步服務器

1.安裝ntp

yum install -y ntp

2.修改配置文件

修改/etc/ntp.conf如下

vim /etc/ntp.conf
#把配置文件下面四行註釋掉:
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 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst

然後將#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
改爲restrict 0.0.0.0 mask 0.0.0.0 nomodify notrap

3.啓動服務/設置服務自啓動

systemctl enable ntpd
systemctl start ntpd

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章