centos7下首先确认防火墙、selinux关闭状态
[root@applog ~]# cat /etc/redhat-release
第一步 安装ntp ntpdate [root@applog ~]# yum install ntp ntpdate -y
第二步 查找时间同步服务器 http://www.pool.ntp.org/zone/asia
第三步 编辑 /etc/ntp.conf server time.windows.com server s2m.time.edu.cn server 0.asia.pool.ntp.org server 1.asia.pool.ntp.org server 2.asia.pool.ntp.org server 3.asia.pool.ntp.org server 127.127.1.0 iburst local clock 当外部时间不可用时,使用本地时间。 restrict 172.100.1.0 mask 255.255.0.0 nomodify 允许更新的IP地址段
第四步 启动ntp服务 systemctl start ntpd systemctl enable ntpd.service 设置开机启动服务
第五步 验证服务
[root@applog ~]# ntpq -p
[root@applog ~]# date -R
第六步 远程客户端时间同步测试
[root@nginx01 ~]# date
[root@nginx01 ~]# ntpdate 172.100.1.119
第七步 客户端设置计划任务,每天晚上1点同步时间 crontab -e 00 01 * * * root /usr/sbin/ntpdate 172.100.1.119; /sbin/hwclock -w 报错解决
[root@nginx01 ~]# ntpdate 172.100.1.119 这个错误是时间服务器,还没有同步上层时间服务器。 (责任编辑:IT) |