时间同步服务器配置

.时间同步

之前时间同步一直有用到,但是一直没有自己搭建一个时间同步服务器

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

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