概述
解决linux 的服务器时间与网络时间不匹配问题
原因
工作的时候用到七牛云上传图片功能,因为有token验证,过一段时间后总是上传图片错误
最终定位到是因为linux的服务器时间与网络时间不匹配导致的token失效,处理这个问题可以直接执行一段命令设置网络时间同步
ntpdate cn.pool.ntp.org
但是发现过一段时间linux的时间还是会出现问题,最终找到解决方法如下
解决方案
操作系统Centos7
- 安装ntpdate(先执行ntpdate命令如果没有需要安装,有就不需要了)
#yum -y install ntp
[root@consumer ~]# ntpdate
18 Oct 00:00:35 ntpdate[5272]: no servers can be used, exiting
- 校正服务器时间与网络时间同步
[root@consumer ~]# ntpdate cn.pool.ntp.org
19 Oct 15:48:26 ntpdate[5274]: step time server 119.28.206.193 offset 143247.110866 sec
-
设置时区
执行命令设置时区,根据选择命令分别选择,5Asia->9 China->1->Beijing Time ->1 yes [root@consumer ~]#tzselect
[root@consumer ~]# 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) Beijing Time
2) Xinjiang Time
#? 1
The following information has been given:
China
Beijing Time
Therefore TZ='Asia/Shanghai' will be used.
Local time is now: Mon Oct 19 15:49:09 CST 2020.
Universal Time is now: Mon Oct 19 07:49:09 UTC 2020.
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@consumer ~]# TZ='Asia/Shanghai'; export TZ
- 软件时间同步硬件时间
[root@consumer ~]# hwclock -w
- 查看当前时间
[root@consumer ~]# date
Mon Oct 19 15:49:53 CST 2020
完成
第二天再次查看Linux服务时间,还是没有同步!!!再找其他解决方案
最后
以上就是高高太阳为你收集整理的linux 服务器时间校正的全部内容,希望文章能够帮你解决linux 服务器时间校正所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复