第一步: //需要以下4个需求包才可以安装
rpm -qa |grep ntp
第二步: //查看状态,如果运行需要关闭
service ntpd status
第三步:编辑配置文件,把下面服务写进配置文件
vim /etc/ntp.conf
server 10.10.10.13 perfer
server 10.223.2.3
restrict 10.10.10.13 nomodify notrap
restrict 10.223.2.3 nomodify notrap
server 127.127.1.0
fudge 127.127.1.0 stratum 10
文章来源:https://www.toymoban.com/news/detail-640934.html
第四步:同步一下 服务器
ntpdate 10.10.10.13
第五步:启动服务,并查看状态
# 启动服务
service ntpd start
# 查看状态
service ntpd status
# 看有没有同步成功
ntpq -p
# 重启ntpd服务
service ntpd restart
文章来源地址https://www.toymoban.com/news/detail-640934.html
centos7 时间同步
# 查看当前状态
systemctl status chronyd
# 关闭 ntp 同步后,才可以使用 timedatectl 进行时间设置
timedatectl set-ntp false
# 同步10.10.10.13
ntpdate 10.10.10.13
# 设置完成后,再开启
timedatectl set-ntp true
Centos6 同步时间
# 查看状态,如果运行需要关闭
service ntpd status
# 关闭 ntp 同步后,才可以使用 timedatectl 进行时间设置
service ntpd stop
# 同步10.10.10.13
ntpdate 10.10.10.13
# 设置完成后,在重启
service ntpd start
到了这里,关于Centos 7 时间同步的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!