zoukankan      html  css  js  c++  java
  • [CentOS7服务器] 更改系统时间

    未知何故,服务器上的系统时间不对,比实际的UTC快了将近63分钟。在涉及本地文件与远程服务器文件的时间戳校验时,容易产生混淆。

    这里把系统时间更正的过程记录如下。

    参考资料:http://www.centoscn.com/CentOS/config/2015/0723/5901.html

    在CentOS 7里面有一个命令timedatectl可以帮助我们修改服务器的时区。

    1. 查看服务器里的时间设置  timedatectl ,它等同于  timedatectl status :

    $ timedatectl
          Local time: Mon 2016-08-29 16:20:35 CST
      Universal time: Mon 2016-08-29 08:20:35 UTC
            RTC time: Mon 2016-08-29 08:18:07
           Time zone: Asia/Shanghai (CST, +0800)
         NTP enabled: yes
    NTP synchronized: no
     RTC in local TZ: no
          DST active: n/a

    2. 了解 timedatectl 命令的各个参数:

    $ timedatectl -h
    timedatectl [OPTIONS...] COMMAND ...
    
    Query or change system time and date settings.
    
      -h --help                Show this help message
         --version             Show package version
         --no-pager            Do not pipe output into a pager
         --no-ask-password     Do not prompt for password
      -H --host=[USER@]HOST    Operate on remote host
      -M --machine=CONTAINER   Operate on local container
         --adjust-system-clock Adjust system clock when changing local RTC mode
    
    Commands:
      status                   Show current time settings
      set-time TIME            Set system time
      set-timezone ZONE        Set system time zone
      list-timezones           Show known time zones
      set-local-rtc BOOL       Control whether RTC is in local time
      set-ntp BOOL             Control whether NTP is enabled

    3. 设置时间

    $ sudo timedatectl set-time 15:26:58$ timedatectl
          Local time: Mon 2016-08-29 15:27:00 CST
      Universal time: Mon 2016-08-29 07:27:00 UTC
            RTC time: Mon 2016-08-29 07:27:00
           Time zone: Asia/Shanghai (CST, +0800)
         NTP enabled: no
    NTP synchronized: no
     RTC in local TZ: no
          DST active: n/a

    结束。

  • 相关阅读:
    34组合总和(39)
    33 原子的数量(726)
    32 划分为k个相等的子集(698)
    31有效的井字游戏(794)
    30 设置交集大小至少为2
    28拼接最大数(321)
    js for循环闭包解决循环变量i遍历值
    js 绑定无响应 父元素监听,绑定子元素,事件绑定的几种方法以及区别
    如何让div+css兼容ie6 ie7 ie8 ie9和FireFox Chrome等浏览器
    css实现左侧固定宽,右侧自适应
  • 原文地址:https://www.cnblogs.com/snake553/p/5818472.html
Copyright © 2011-2022 走看看