CentOS7怎么修改服务器系统时间

  CentOS7怎么修改服务器系统时间

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

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

  ?


1

2

3

4

5

6

7

8

9

$ 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 命令的各个参数:

  ?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

$ 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. 设置时间

  ?


1

2

3

4

5

6

7

8

9

$ 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

  PS:下面看下CentOS修改服务器系统时间

  linux安装完毕后,一般都是国外的世界,一点都不方便设置任务,或者导致网站获取本地的时间错乱,所以就需要把服务器的时间改为和本地时间一致,也就是换成中国的时间。

  第一条指令:date –s '2016-10-31 10:10:10'

  第二条指令:clock –w //将日期写入CMOS

  时间按照上面的格式,操作完毕可以再用

  date

  查看服务器时间,如果和设置的一样,就表示成功了

更多知识请关注服务器教程

(0)

相关推荐

  • 如何修改linux系统时间?

    拿linux虚拟机做实验的朋友会知道.当你把linux还原到某个点的时候,vmware帮不了你把系统时间也给重设了.那么修改linux系统时间的方法是什么呢?下面跟着学习啦小编一起来了解一下吧. 修改 ...

  • 修改linux系统时间的方法(date命令)

    命令格式为: date -s 时间字符串 例如只修改系统的日期,不修改时间(时分秒) date -s 2012-08-02 或只修改时间不修改日期 date -s 10:08:00 当然也可以同时修改 ...

  • linux下修改系统时间

    修改linux下系统的 时间 操作方法 01 linux下可以使用date命令来查看系统时间 02 还可以通过date命令来修改系统时间 格式为 date -s "YYYY-MM-DD  h ...

  • centos7系统怎么修改锁屏时间?

    centos7系统怎么修改锁屏时间? 1.点击gnome桌面左上角的应用程序,然后点击系统工具中的设置 2.点击隐私 3.点击锁屏 4.在弹出的设置界面即可更改锁屏时间 更多知识请关注服务器教程

  • Win10系统时间设置、同步、同步服务器修改方法

    Windows 时间服务器不在中国,在Windows10系统中使用时间同步时,容易出错. 在Windows10系统中,我们可以设置一个国内的时间同步服务器. 在Windows10系统中,Interne ...

  • linux修改系统时间的详细方法介绍

    两步 (1)date 042612492005 (2)hwclock -w 第一步的意思是设置时间,设置完了可以用date命令查看对不对...注意是月日时分年 第二步的意思是写入主板的rtc芯片.. ...

  • linux修改系统时间和linux查看时区.修改时区的方法

    一、查看和修改Linux的时区 1. 查看当前时区 命令 : "date -R" 2. 修改设置Linux服务器时区 方法 A 命令 : "tzselect" 方法 B 仅限于RedHat Linux ...

  • linux系统时间修改及同步

    时间修改 date 月日时分年.秒 date -s可以直接设置系统时间 比如将系统时间设定成1996年6月10日的命令如下。 #date -s 06/10/96 将系统时间设定成下午1点12分0秒的命 ...

  • Linux如何修改系统时间和时区

    修改时区: 1> 找到相应的时区文件 /usr/share/zoneinfo/Asia/Shanghai 用这个文件替换当前的/etc/localtime文件。 或者找你认为是标准时间的服务器, ...