[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=[[email protected]]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

结束。

时间: 2024-10-10 02:43:35

[CentOS7服务器] 更改系统时间的相关文章

组策略允许用户更改系统时间

新建组策略-计算机配置-策略-windows设置-安全设置-本地策略-用户权限指派-更改系统时间-添加所有域用户 之后在客户端上更新下组策略 cmd-gpupdate /force 测试成功

如何更新linux服务器的系统时间

由于服务器的时间出现错误,可采用以下方法来更新linux服务器的系统时间: 方法一: 1,首先yum 安装本地ntpdate客户端,更新ntpdate cn.pool.ntp.org时使用 [[email protected] ~]# yum install ntpdate 2,使用 ntpdate cn.pool.ntp.org进行更新. [[email protected] ~]# ntpdate cn.pool.ntp.org 15 Sep 16:46:32 ntpdate[15965]:

JS更改系统时间再获取时间戳不正确

今天做验证的时候,测试时间方面的时候发现一个问题,我提出了最简单的代码,代码如下. $("#div").click(function(){ var date = new Date(); console.log(date.getHours()) }) 这串代码没有问题,但是在Windows连续更改时间后,在Chrome上,它获取到的可能是之前的时间, 我这时候想到可能是缓存,所以我在 WebStorm 上用 nodejs 运行,果然,nodejs 没有这个问题 这只是一个小问题.在这里提

2014.10.1 Cmd更改系统时间

Process p = new Process(); //Process类有一个StartInfo属性 //设定程序名 p.StartInfo.FileName = "cmd.exe"; ////设定程式执行参数   "/C"表示执行完命令后马上退出 p.StartInfo.Arguments = string.Format("/c date {0} time {1}",date,time); ////关闭Shell的使用 p.StartInfo

C#更改系统时间

核心代码: using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace TestServerTime {     public class Se

freebsd 系统时间

http://blog.csdn.net/wowoto/article/details/5557810 https://www.douban.com/note/150233427/ date #查看当前系统日期与時間 date 200605261145 #更改系統時間為2006年05月26日11时45分 如果不能更改系统时间.可以按如下操作执行: 原因: 可能你的安全级别高于0 .FreeBSD 在安全级别高于0是不许更改系统时间的 . 也可以重启到单用户模式来更改时间. 使用下面的命令检查你的

Win10没有权限修改系统时间如何解决?

电脑发展到今天,时间的显示已经非常智能化.在Win10系统下,用户想要修改电脑时间,可以通过右下角时间区域进行调整.但是,有用户发现修改不了系统时间,提示没有权限.这是怎么回事?那要如何解决这样的问题呢?现在小编就和大家说一下Win10没有权限修改系统时间的解决方法. 步骤如下: 第一步.按"Win+r"组合键,运行"执行"对话框,输入"gpedit.msc",回车确认.如下图所示: 第二步.依次展开"计算机配置-Windows设置-安

禁止修改系统时间

这里有种办法供你选择:1.打开注册表(regedit),在HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer     下新增一个键值:     键值名称:NoSaveSettings     键值数据类型:DWORD     键值数据:1--退出时禁止储存环境设置                         0--退出时允许储存环境设置2.首先,使用系统管理员的帐号登陆进入系统,打开“开始

linux系统时间设定

更改系统时间并同步硬件时钟 sudo date -s '2018-12-27 12:46' sudo hwclock --systohc hwclock说明:hwclock --help 原文地址:https://www.cnblogs.com/chbo/p/10184350.html