服务器时间与电脑时间不能同步

服务器时间与电脑时间不能同步,第1张

当电脑使用时间长了之后,可能会发现系统里时间和真实时间出现了一些误差,即使开启了时间同步,也会出现服务器时间与电脑时间不能同步的问题,这应该怎么解决呢。

服务器时间与电脑时间不能同步:

1、首先右键右下角时间,点击“调整日期和时间

2、接着开启其中的“自动设置时间

3、然后点一下下面的“立即同步”即可。

4、如果同步失败,按下键盘“Win+R”快捷键。

5、在其中输入“regedit”并回车打开注册表。

6、随后进入注册表“计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient”位置。

7、进入后双击打开右边“SpecialPollInterval”选项。

8、最后将其中的基数改为“十进制”并“确定”保存即可解决。

1、同时按下win+R组合键,调出运行窗口,输入“servicesmsc”,单击“确定”

2、打开的服务界面,往下面拉动

3、找到“windows time”选项

4、双击“windows time”选项,弹出的界面中,在启动类型中选择“自动”选项,单击确定

5、在电脑桌面上面双击控制面板

6、找到“时钟、语言和区域”选项

7、在打开的界面中,单击“日期和时间”选项

8、在弹出的界面中,单击“internet时间”选项

9、单击下方的“更改设置”选项

10、在打开的internet时间设置的界面中,勾选“与internet时间服务器同步”选项,单击后面的“立即更新”选项,单击“确定”

独立主机

rm -rf /etc/localtime

ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #修改时区到东8区。

date -R #查看的时区设置。

接下来调整系统时间与时间服务器同步

Debian系统安装NTP校时包:

代码如下:

apt-get install ntpdate #安装ntp

CentOS系统安装NTP校时包:

代码如下:

yum -y install ntpdate ntp #安装ntp

Ubuntu系统安装NTP校时包:

代码如下:

sudo apt-get install -y ntpdate ntp

修改/etc/ntpconf

vi /etc/ntpconf 就会看到以下内容:

代码如下:

server 0centosntporg

server timewindowscom

server timenistgov

这是默认的ntp同步服务器,大家可以自己改,全球ntp服务器地址:http://wwwpoolntporg/

我改成了:

代码如下:

server cnpoolntporg //这中国的ntp服务器

server time-anistgov

server timewindowscom

server timenistgov

然 后保存退出(vi退出的方法见:http://wwwdabuinfo/personal-summary-personally-i- carefully-collected-must-be-familiar-with-vim-shortcut-key-operationhtml)

接着输入下面的命令:

代码如下:

ntpdate -d cnpoolntporg #调试查看时间差异

ntpdate cnpoolntporg #同步时间

date -R # 检查时间是否同步

修改 ntp 的配置文件

代码如下:

vi /etc/sysconfig/ntpd

SYNC_HWCLOCK=yes #同步独立主机的硬件时钟

#配置开机启动ntp服务,定期同步时间

chkconfig --levels 235 ntpd on #启动ntp同步

/etc/initd/ntpd start

XEN VPS

最好是安装ntp服务,这样可以解决vps在重启后时间不准的问题。有时候,依靠母鸡的硬件时钟,总是差七八分钟。实在没辙了。而已很多的web服务,如Google Authenticator等,如果时间不同步,会导致无法验证的地步,自然就网站都登陆不上了。

代码如下:

rm -rf /etc/localtime

ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #修改时区到东8区。

date -R #查看的时区设置。

接下来调整系统时间与时间服务器同步

Debian系统安装NTP校时包:

代码如下:

apt-get install ntpdate #安装ntp

CentOS系统安装NTP校时包:

代码如下:

yum -y install ntpdate ntp #安装ntp

Ubuntu系统安装NTP校时包:

代码如下:

sudo apt-get install -y ntpdate ntp

修改/etc/ntpconf

vi /etc/ntpconf 就会看到以下内容:

代码如下:

server 0centosntporg

server timewindowscom

server timenistgov

这是默认的ntp同步服务器,大家可以自己改,全球ntp服务器地址:http://wwwpoolntporg/

我改成了:

代码如下:

server cnpoolntporg //这中国的ntp服务器

server time-anistgov

server timewindowscom

server timenistgov

然 后保存退出(vi退出的方法见:http://wwwdabuinfo/personal-summary-personally-i- carefully-collected-must-be-familiar-with-vim-shortcut-key-operationhtml)

接着输入下面的命令:

代码如下:

ntpdate -d cnpoolntporg #调试查看时间差异

ntpdate cnpoolntporg #同步时间

date -R # 检查时间是否同步

#配置开机启动ntp服务,定期同步时间

chkconfig --levels 235 ntpd on #启动ntp同步

/etc/initd/ntpd start

#先设置XEN 的VPS使用和系统无关的时间模式

echo 1 /proc/sys/xen/independent_wallclock

然后尝试上面独立主机的配置方法即可。通过配置时间正确后,编辑系统配置文件,让配置永久生效。

代码如下:

vi /etc/sysctlconf

xenindependent_wallclock=1 #在文件中增加并且保存

OpenVZ VPS

(Burst VPS 采用)

OpenVZ的VPS直接从物理机读取时间不允许对主机进行时间修改,你只需修改时区。我还没用过openvz vps,所以,不清楚能否用ntp服务不,可以试试安装ntp service 看。如果可以的话,请告诉我。

代码如下:

rm -rf /etc/localtime

ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #修改时区到东8区。

date -R #查看时间和时区

此时如果时间和时区都正确,配置成功,时间如果不对,需要联系主机服务商的技术支持,让他们把母鸡(物理机)时间同步,你的VPS时间就会正常。

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » 服务器时间与电脑时间不能同步

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情