时间命令
-
date
-
查看当前系统时间
-
-
cal 查看日历
-
cal 2022
-
-
修改时间
-
date -s 11:11:11
-
date -s 2019-11-11
-
date -s '2019-11-11 11:11:11'
-
日期自动同步
- 自动同步时间
-
yum install ntp -y
-
ntpdate cn.ntp.org.cn
-
- 本地搭建NTP服务器
-
service ntpd start
-
vi /etc/ntp.conf
-
#==========权限控制============
restrict default kod nomodify notrap nopeer noquery 拒绝IPv4用户
restrict -6 default kod nomodify notrap nopeer noquery 拒绝IPv6用户
restrict 210.72.145.44 授权国家授时中心服务器访问本地NTP
restrict 133.100.11.8 授权133.100.11.8访问本地NTP
restrict 127.0.0.1
restrict -6 ::1
restrict 192.168.48.2 mask 255.255.255.0 nomodify 本地网段授权
#==========源服务器============
server cn.ntp.org.cn prefer 指定上级更新时间服务器,优先使用这个地址
#==========差异分析============
driftfile /var/lib/ntp/drift
keys /etc/ntp/keys - 客户端同步时间
-
ntpdate 192.168.48.124
-
-