继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

NTP时间同步

慕田峪3728086
关注TA
已关注
手记 22
粉丝 45
获赞 192

服务:NTP服务器为客户机提供标准时间
服务端:test时间同步服务器
客户端:虚拟机top0

1.安装chrony客户端软件,与时间服务端沟通的软件
[root@test ~]# yum -y install chrony
[root@test ~]# rpm -q chrony
chrony-1.29.1-1.el7.x86_64

2.修改配置文件/etc/chrony.conf,指定服务端位置
[root@server0 ~]# vim /etc/chrony.conf

server ntp1.aliyun.com iburst
bindacqaddress 0.0.0.0
allow 0/0
:wq
3. 启动客户端chronyd服务
daemon: 守护进程,守护程序
[root@test ~]# systemctl restart chronyd #重起服务
[root@test ~]# systemctl enable chronyd #设置随机自启动

4.验证:
[root@top0 ~]# date -s "2000-10-1 10:12:30"
2000年 10月 01日 星期日 10:12:30 CST
[root@top0 ~]# date
[root@top0 ~]# systemctl restart chronyd
[root@top0 ~]# date
[root@top0 ~]# ntpdate 服务端ip地址

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP

热门评论

同步客户端时间:ntpdateserver.example.com

查看全部评论