一.更改时区 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 二.Crontab时间同步 crontab -e   #crontab编辑 */5 * * * * /usr/local/bin/ntpdate time1.aliyun.com    #每五分钟进行时间同步…
1:使用date命令查看时区 [root@db-server ~]# date -R   Sun, 11 Jan 2015 07:10:28 -0800   [root@db-server ~]#   如上RFC 2822 format所示,上面命令输出了-0800表示西八区,是美国旧金山所在的时区,下面表示我们国家的东八区(+0800) [root@lnx01 ~]# date -R   Sun, 11 Jan 2015 23:06:02 +0800   2:查看clock系统配置文件 [ro…
1:使用date命令查看时区 [root@db-server ~]# date -R   Sun, 11 Jan 2015 07:10:28 -0800   [root@db-server ~]#   如上RFC 2822 format所示,上面命令输出了-0800表示西八区,是美国旧金山所在的时区,下面表示我们国家的东八区(+0800) [root@lnx01 ~]# date -R   Sun, 11 Jan 2015 23:06:02 +0800   2:查看clock系统配置文件 [ro…
Centos7为例:修改时区 timedatectl list-timezones |grep Shanghai #查找中国时区的完整名称 Asia/Shanghai timedatectl set-timezone Asia/Shanghai #其他时区以此类推 Centos7:同步时间 ntpdate pool.ntp.org…
简化版 同步时间 #直接用域名同步中国上海时间 ntpdate -u ntp.api.bz # hwclock --hctosys 或者 # clock --hctosys hc代表硬件时间,sys代表系统时间,即用硬件时钟同步系统时钟系统时钟和硬件时钟同步: # hwclock --systohc或者# clock --systohc 即用系统时钟同步硬件时钟 clock --systohc #同步完硬件时钟后,需要做定时同步时间 vim /etc/crontab #输入:*/1 * * *…
1.设置时区 编辑 /etc/sysconfig/clock 修改 ZONE="Asia/Shanghai" 然后  cp  /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 2.修改时间 date  -s  月日时分秒年 设置为2015/10/11  13:24:33 date -s 10111324332015 3.写入到cmos hwclock  -w 4.自动同步时间 ntpdate  time.windows.com 这个时间服…
date 月日时分年.秒date -s可以直接设置系统时间 比如将系统时间设定成1996年6月10日的命令如下.#date -s 06/10/96将系统时间设定成下午1点12分0秒的命令如下.#date -s 13:12:00时间同步1.首先需了解linux内一任务计划工具crontab crontab可以定时去执行你要做的动作 直接用crontab命令编辑crontab -u //设定某个用户的cron服务,一般root用户在执行这个命令的时候需要此参数crontab -l //列出某个用户c…
查看服务器时间及所在时区 [root@localhost ~]# date -R Fri, 07 Dec 2018 04:38:28 -0500 修改时区 先使用 tzselect 根据提示选择所在地区,最终生成时区 You can make this change permanent for yourself by appending the line TZ='Asia/Shanghai'; export TZ to the file '.profile' in your home direc…
linux设置时区同步时间 一.运行tzselect sudo tzselect 在这里我们选择亚洲 Asia,确认之后选择中国(China),最后选择北京(Beijing) 如图:   二.复制文件到/etc目录下 sudo cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime   三.更新时间 sudo ntpdate time.windows.com   四.写入硬件 sudo hwclock -w…
查看当前系统时区 ls -la /etc/localtime 查看支持的时区 timedatectl list-timezones # 查看所有时区 timedatectl list-timezones | grep Asia # 查看亚洲时区 修改时区 修改为上海时区 timedatectl set-timezone Asia/Shanghai 查看修改后的时区 timedatectl 同步时间 安装  ntpdate yum install ntpdate 查看ntp服务器的时间 ntpda…