配置的时钟服务器的ip地址为172.18.68.31
第一步 为服务器和客户机安装ntp ntpdate
[root@sql-proxy1 app]#yum install ntp ntpdate -y
第二步 查找时间同步服务器
http://www.pool.ntp.org/zone/asia #在里面可以找到中国
第三步 编辑 /etc/ntp.conf
[root@sql-proxy1 app]#vim /etc/ntp.conf
server 0.cn.pool.ntp.org
server 1.cn.pool.ntp.org
server 2.cn.pool.ntp.org
server 3.cn.pool.ntp.org #以上四个是时间同步服务器
server 127.127.1.0 iburst local clock #当外部时间不可用时,使用本地时间
restrict 172.18.68.1 mask 255.255.0.0 nomodify #允许更新的IP地址段
第四步 启动ntp服务
[root@sql-proxy1 app]#systemctl start ntpd
第五步 验证服务
[root@sql-proxy1 app]#ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
120.25.115.19 .INIT. 16 u - 64 0 0.000 0.000 0.000
ntp6.flashdance .INIT. 16 u - 64 0 0.000 0.000 0.000
time5.aliyun.co .INIT. 16 u - 64 0 0.000 0.000 0.000
85.199.214.101 .INIT. 16 u - 64 0 0.000 0.000 0.000
biisoni.miuku.n .INIT. 16 u - 64 0 0.000 0.000 0.000
ntp5.flashdance .INIT. 16 u - 64 0 0.000 0.000 0.000
leontp.ccgs.wa. .INIT. 16 u - 64 0 0.000 0.000 0.000
ntp1.ams1.nl.le .INIT. 16 u - 64 0 0.000 0.000 0.000
*LOCAL(0) .LOCL. 5 l 7 64 1 0.000 0.000 0.000
第六步 远程客户端时间同步测试
[root@sql-mysql2 ~]#ntpdate 172.18.68.31
17 Dec 20:55:08 ntpdate[11904]: adjust time server 172.18.68.31 offset -0.000067 sec
第七步 客户端设置计划任务,每天晚上1点同步时间
crontab -e
00 01 * * * root /usr/sbin/ntpdate 172.18.68.31; /usr/sbin/clock -w
网友评论