码迷,mamicode.com
首页 > 其他好文 > 详细

将服务器时间类型改为UTC(0000)

时间:2019-10-20 20:09:36      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:src   container   size   timezone   图片   shu   nal   需要   load   

方法一:

# timedatectl  set-timezone UTC

#  timedatectl set-time "YYYY-MM-DD HH:MM:SS"

#  timedatectl set-time   "HH:MM:SS"

# timedatectl

 
技术图片

我们可以看到,服务器时间类型更改为UTC了

# ll   /etc/locatime

lrwxrwxrwx. 1 root root 25 1月  14 08:30 /etc/localtime -> ../usr/share/zoneinfo/UTC

实际上是做了一个将 

 文件  /etc/localtime  做了一个软连接到 /usr/share/zoneinfo/UTC

方法二:

#  ln  -s   /usr/share/zoneinfo/UTC    /etc/localtime

ln: 无法创建符号链接"/etc/localtime": 文件已存在

#  ln  -sf /usr/share/zoneinfo/UTC    /etc/localtime

做软连接时,需要加 -f 参数,强制覆盖,不然会显示软链接已存在

#  timedatectl set-time "YYYY-MM-DD HH:MM:SS"

#  timedatectl set-time   "HH:MM:SS"    //只设置时分秒

# timedatectl

 
技术图片

将服务器时间类型改为UTC(0000)

标签:src   container   size   timezone   图片   shu   nal   需要   load   

原文地址:https://www.cnblogs.com/qiumingcheng/p/11708465.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!