首页 > 代码库 > 搭建内网NTP时间服务器
搭建内网NTP时间服务器
搭建内网的NTP时间服务器
需求:搭建一台时间服务器,使得无外网的服务器可以同步时间。
一、环境
1. [root@m01 ~]# cat /etc/redhat-release
2. CentOS release 6.8 (Final)
3. [root@m01 ~]# hostname -I
4. 10.0.0.61 172.16.1.61
5. #外网10.0.0.61;内网172.16.1.61
二、安装ntp并检查是否安装成功
1. yum install ntp
2. rpm -qa|grep ntp
三、配置可用时间服务器
1. vim /etc/ntp.conf
2. # restrict default kod nomodify notrap nopeer noquery
3. restrict default nomodify
4. # Use public servers from the pool.ntp.org project.
5. # Please consider joining the pool (http://www.pool.ntp.org/join.html).
6. #server 0.centos.pool.ntp.org iburst
7. #server 1.centos.pool.ntp.org iburst
8. #server 2.centos.pool.ntp.org iburst
9. #server 3.centos.pool.ntp.org iburst
10. #将原有的不可用的源注释,添加新的源
11. server ntp1.aliyun.com
12. server time.nist.gov
四、启动ntp服务器(这台服务器是需要外网的)
1. /etc/init.d/ntpd start
2. #启动后会自动更新时间
3. #如果原来有同步时间的任务,关闭,否则会报如下的错误。
4. ntpdate[118978]: the NTP socket is in use, exiting
五、无外网的服务器同步时间
1. ntpdate 172.16.1.61
2.
3. #时间服务器启动后,需要过几分钟才能进行同步。
4. ntpdate[5687]: no server suitable for synchronization found
本文出自 “12207438” 博客,请务必保留此出处http://12217438.blog.51cto.com/12207438/1950879
搭建内网NTP时间服务器