NTP服务搭建
端口 123 tcp/udp
安装ntp服务端 ntp-4.2.6p5-15.el6.centos.x86_64
安装ntp客户端 ntpdate-4.2.6p5-15.el6.centos.x86_64
配置文件位置
[root@vm ~]# vi /etc/ntp.conf
实验:服务器同步时间
搭建内网ntp服务器,让内网机器通过此ntp服务器进行时间同步
1 restrict 10.1.1.0 mask 255.255.255.0 #允许某个网段访问ntp服务器 2 restrict 10.1.1.6 #允许单个ip访问ntp服务器 3 server ntp1.aliyun.com #指定ntp服务器的上游服务器为ntp1.aliyun.com
查看ntp服务器有无和上层ntp连通
[root@vm ~]# ntpstat synchronised to NTP server (120.25.115.20) at stratum 3 time correct to within 33 ms polling server every 64 s
查看与上游服务器的连接状态
refid :参考的上一次ntp主机地址
st :ntp服务阶层,最多不超过16层
poll:下次更新在几秒以后
offset:时间补偿的结果
启动ntpd程序,并设置ntpd服务开机自启:
chkconfig ntpd on
service ntpd start
修改防火墙规则
iptables -I INPUT -m udp -p udp --dport 123 -j ACCEPT
ip6tables -I INPUT -m udp -p udp --dport 123 -j ACCEPT service iptables save service ip6tables save
客户端时间同步
[root@vm2 ~]# ntpdate 10.1.1.5
14 Aug 14:33:18 ntpdate[2362]: adjust time server 10.1.1.5 offset 0.010703 sec
定时同步[加入任务计划]
/usr/sbin/ntpdate ntp1.aliyun.com
手动修改系统时间
[root@vm2 ~]# date -s "2016-3-5 22:05"
2016年 03月 05日 星期六 22:05:00 CST
设定时区文件
/etc/sysconfig/clock
[root@vm ~]# vi /etc/sysconfig/clock
ZONE="Asia/Shanghai"
查看硬件BIOS时间
hwclock -r 读出BIOS时间
hwclock -w 将当前系统时间写入BIOS中
date常用格式化输出
1 [root@VM6 ~]# date "+%H:%M:%S" 2 08:15:25 3 [root@VM6 ~]# date "+%Y-%m-%d %H:%M:%S" 4 2020-12-07 08:15:40