修改linux系统时间为CST(中国上海)时区

问题:

当前时间为北京时间2021-01-24 14:36:15,但是在服务器上的时间却慢了12个小时,关于在于系统时区设置为EDT,比北京时间慢了12个钟头

[root@cqs_test ~]# date
Mon Jan 25 10:06:00 CST 2021

解决:

备份系统时间包

[root@cqs_test ~]# cd /etc
[root@cqs_test etc]# mv localtime localtime.bak

创建软连接把上海时间包连过去系统时间包

[root@cqs_test etc]# ln -s /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime

查看当前时间

[root@cqs_test etc]# date
Mon Jan 25 10:06:00 CST 2021

如果这时候时间还不对的话,可以执行以下命令进行同步

[root@cqs etc]# ntpdate us.pool.ntp.org

安装该命令的命令

yum install -y ntpdate

 

你可能感兴趣的:(Linux,linux)