ntp时间服务器步骤
第一步 搭建需要安装以下软件:
yum -y install ntp ntpdate
第二步 查找时间同步服务器
http://www.pool.ntp.org/zone/asia
第三步 修改配置文件:
vim /etc/ntp.conf
注释掉原来的 pool.ntp.org 项目的公共服务器默认列表添加新的服务器列表server ntp.api.bz prefer # 优先访问同步的NTP服务器(上海) :ntp.api.bz
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
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
restrict xxx.xxx.xxx.xxx mask 255.255.255.0 nomodify
第四步 启动ntp服务
systemctl start ntpd
systemctl enable ntpd.service 设置开机启动服务
第五步、查看运行情况
watch ntpq -p
第六步 内网机器同步时间方法
其他服务器可设置计划任务同步或者安装ntp服务平滑同步时间
00 /1 root /usr/sbin/ntpdate -u serverIP && /sbin/hwclock -w
注:
放置同步失败建议防火墙放开123 端口或者关闭防火墙
查看硬件时间:hwclock --show
同步硬件时间为软件时间:hwclock -w
报错解决
问题一:
[root@nginx01 ~]# ntpdate 10.100.3.3
12 Oct 10:38:26 ntpdate19199: no server suitable for synchronization found
问题二:
NTP时间相差8个小时的解决办法:
rm -rf /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
共同学习,写下你的评论
评论加载中...
作者其他优质文章