需求在服务器上修改自定义日期
date -s "20101111 11:11:11" 修改日期时间
date -s 20220701 修改日期
date 查看日期时间,发现没有生效
web:~
Wed Apr 27 14:36:36 CST 2022
原因是ubuntu系统开启的有自动同步时间,需要查看自动时间更新设置
ubuntu:~
Local time: Wed 2022-04-27 14:46:55 CST
Universal time: Wed 2022-04-27 06:46:55 UTC
RTC time: Wed 2022-04-27 06:46:55
Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes
systemd-timesyncd.service active: yes 自动同步时间是开启的
RTC in local TZ: no
如果说是需要自定义日期时间,需要关闭自动同步
timedatectl set-ntp 0 关闭自动同步
timedatectl set-ntp 1 开启自动同步
关闭同步以后再次手动自定义时间日期
root@ubuntu:~
Sun Feb 2 00:00:00 CST 2020
root@ubuntu:~
Sun Feb 2 00:00:01 CST 2020
|