1.修改配置文件修改为上海时区

vi /etc/sysconfig/clock

ZONE="Asia/Shanghai"

2.创建上海时区的软连接

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

3.重启机器生效

shutdown -Fr now

4.重启后如果时间仍不对,使用date命令调整时间

--时间调整为2017年6月7号11:29:30
date 060711292017.30

5.确认硬件时间匹配

--读取
hwclock -r
--同步
hwclock -w

注意:

1)时区一般建议在安装系统时就选择正确,不建议后期更改

2)tzselect可以指导你如何选择正确的时区,但并不会修改时区

tzselect命令示例:

[root@jyrac1 ~]# tzselect
Please identify a location so that time zone rules can be set correctly.
Please select a continent or ocean.
1) Africa
2) Americas
3) Antarctica
4) Arctic Ocean
5) Asia
6) Atlantic Ocean
7) Australia
8) Europe
9) Indian Ocean
10) Pacific Ocean
11) none - I want to specify the time zone using the Posix TZ format.
#? 5
Please select a country.
1) Afghanistan 18) Israel 35) Palestine
2) Armenia 19) Japan 36) Philippines
3) Azerbaijan 20) Jordan 37) Qatar
4) Bahrain 21) Kazakhstan 38) Russia
5) Bangladesh 22) Korea (North) 39) Saudi Arabia
6) Bhutan 23) Korea (South) 40) Singapore
7) Brunei 24) Kuwait 41) Sri Lanka
8) Cambodia 25) Kyrgyzstan 42) Syria
9) China 26) Laos 43) Taiwan
10) Cyprus 27) Lebanon 44) Tajikistan
11) East Timor 28) Macau 45) Thailand
12) Georgia 29) Malaysia 46) Turkmenistan
13) Hong Kong 30) Mongolia 47) United Arab Emirates
14) India 31) Myanmar (Burma) 48) Uzbekistan
15) Indonesia 32) Nepal 49) Vietnam
16) Iran 33) Oman 50) Yemen
17) Iraq 34) Pakistan
#? 9
Please select one of the following time zone regions.
1) east China - Beijing, Guangdong, Shanghai, etc.
2) Heilongjiang (except Mohe), Jilin
3) central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
4) most of Tibet & Xinjiang
5) west Tibet & Xinjiang
#? 1 The following information has been given: China
east China - Beijing, Guangdong, Shanghai, etc. Therefore TZ='Asia/Shanghai' will be used.
Local time is now: Wed Jun 7 11:33:55 CST 2017.
Universal Time is now: Wed Jun 7 03:33:55 UTC 2017.
Is the above information OK?
1) Yes
2) No
#? 1 You can make this change permanent for yourself by appending the line
TZ='Asia/Shanghai'; export TZ
to the file '.profile' in your home directory; then log out and log in again. Here is that TZ value again, this time on standard output so that you
can use the /usr/bin/tzselect command in shell scripts:
Asia/Shanghai
[root@jyrac1 ~]#

可以看到,最后只是建议你如何设置时区的环境变量。这可以用来单独设置某个用户下的时区。

比如我在oracle用户临时指定了美国纽约的时区(TZ='America/New_York'; export TZ),时间就会显示美国纽约的时间。

[oracle@jyrac1 ~]$ date
Wed Jun 7 11:44:35 CST 2017
[oracle@jyrac1 ~]$ TZ='America/New_York'; export TZ
[oracle@jyrac1 ~]$ date
Tue Jun 6 23:44:39 EDT 2017

最新文章

  1. DP专题训练之HDU 1506 Largest Rectangle in a Histogram
  2. Android AsyncTask 简单用法
  3. SQL Server:数据库角色
  4. SilverlightOA源代码(可用于企业级Silverlight项目的二次开发,长年有效)
  5. Android学习笔记之使用LBS实现定位
  6. hiho #1288 微软2016.4校招笔试题 Font Size
  7. Mac OS 上设置 JAVA_HOME
  8. scroll 事件绑定
  9. angular 管理后台
  10. weekend110(Hadoop)的 第二天笔记
  11. LCS 小结
  12. ThinkPHP5.0版本和ThinkPHP3.2版本的区别
  13. js移动端/H5同时选择多张图片上传并使用canvas压缩图片
  14. signalR的集群与负载均衡
  15. PySC2是DeepMind的“星际争霸II学习环境”(SC2LE)的Python组件
  16. 【原创】大叔经验分享(47)yarn开启日志归集
  17. Selenium 笔记
  18. centos7 关闭防护墙
  19. 【BZOJ】【1876】【SDOI2009】SuperGCD
  20. opencv 矩阵类数据的运算

热门文章

  1. Android M App休眠 (adb shell dumpsys usagestats)
  2. 开发常见错误之 : IMP-00058: 遇到 ORACLE 错误 1691
  3. C语言如何产生随机数
  4. 【CF908E】New Year and Entity Enumeration 位运算+DP
  5. vs2010版本注释
  6. backBone.js之Model篇 (1) 简单实例
  7. [转]Android Path里FillType功能
  8. Spark2 ML包之决策树分类Decision tree classifier详细解说
  9. POJ-1926 Pollution
  10. 洛谷P2414 阿狸的打字机【AC自动机】【fail树】【dfs序】【树状数组】