手记

NTP时间同步

服务: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地址

1人推荐
随时随地看视频
慕课网APP

热门评论

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

查看全部评论