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

Posted 邱明成

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将服务器时间类型改为UTC(0000)相关的知识,希望对你有一定的参考价值。

方法一:

# 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)的主要内容,如果未能解决你的问题,请参考以下文章

如何将时间从 UTC 转换为 EST?

将 UTC 时间戳插入 MySQL - 夏令时时区

将时间戳从 tz='UTC' 更改为 tz='tzutc()'

C# 将 DateTime 从 UTC 转换为 GMT 或 BST

如何将 MySQL 数据库更改为 UTC?

如何从 UTC 转换为 tzutc() 时区?