博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CentOS7服务器] 更改系统时间
阅读量:6093 次
发布时间:2019-06-20

本文共 1711 字,大约阅读时间需要 5 分钟。

未知何故,服务器上的系统时间不对,比实际的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: yesNTP synchronized: no RTC in local TZ: no      DST active: n/a

 

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

$ timedatectl -htimedatectl [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 modeCommands:  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: noNTP synchronized: no RTC in local TZ: no      DST active: n/a

 

结束。

 

转载于:https://www.cnblogs.com/snake553/p/5818472.html

你可能感兴趣的文章
Apache Storm 与 Spark:对实时处理数据,如何选择【翻译】
查看>>
【转】jmeter 进行java request测试
查看>>
读书笔记--MapReduce 适用场景 及 常见应用
查看>>
SignalR在Xamarin Android中的使用
查看>>
走过电竞之路的程序员
查看>>
Eclipse和MyEclipse使用技巧--Eclipse中使用Git-让版本管理更简单
查看>>
[转]响应式表格jQuery插件 – Responsive tables
查看>>
8个3D视觉效果的HTML5动画欣赏
查看>>
C#如何在DataGridViewCell中自定义脚本编辑器
查看>>
【linux】crontab定时命令
查看>>
开发人员与测试人员的划分
查看>>
redis源码笔记 - slowlog
查看>>
10 个 SharePoint 2010 实用实验室手册开发指南
查看>>
敏捷结果30天之第十五天:让自己处于宁静状态
查看>>
jQuery为Input赋值
查看>>
Visual Studio 2012令人恼火的默认设置:Ctrl-C会复制空行清空剪贴板
查看>>
Permit.js – 用于构建多状态原型的 jQuery 插件
查看>>
解决一个报表EdmFunction报错问题
查看>>
c++ socket 客户端库 socks5 客户端 RudeSocket™ Open Source C++ Socket Library
查看>>
Implementer's Reference
查看>>