如何在Windows10中更改时间服务器
win10修改系统时间方法:
1、在win10桌面点击任务栏最右端的时间显示窗口,如下图所示,在弹出菜单中选择<日期与时间设置>
2、打开日期与时间设置窗口后,缺省状态下更改日期与时间的选项为灰色,不可选择,因此需要将上方<自动设置时间>置于关闭状态。
3、将自动设置时间滑动键向左拨动关闭自动设置后,再点击下方的更改日期与时间选项进入修改。
4、下一步就进入了时间更改的窗口,上方一行修改年月日,下方一行是修改具体时间,修改后确定退出就生效了。
5、实际情况下自动设置时间就可以搞定了,没有必要手动来改时间,如果自动设置下时间不准,一般是因为网络不通,或者时间服务未打开,造成电脑没法从世界时间服务器同步时间造成的。
6、网络的问题不在解决之列,下一步来解决时间服务的问题,在桌面上右键点击电脑,选择管理。
7、在计算机管理菜单,选择左方树形菜单中第三大类<服务与应用程序>,双击点开右侧箭头,在展开菜单中选择<服务>
8、在右侧的服务清单中,找到windows time服务,这里的服务是按首字母排列的,所以这个服务已在末属,在该服务上单击右键,选择启动。
9、下一步来配置该服务开机时就启动,左键双击该服务,会进入到服务配置界面,如下图,在启动类型中下拉菜单,选择为自动。
10、当然也在这个界面中启动和停止这个服务,选择下方的确定就可以保存退出,在服务的状态栏里确认该服务已经启动,并且是自动状态,这样windows就会自动同步时间,不用担心时间不准了。
一、搭建时间服务器
1、在一台linux服务器安装ntp server
tar zxvf ntp-426targz
cd ntp-426
/configure --prefix=/usr/local/ntp --enable-all-clocks --enable-parse-clocks
make && make install
2、修改ntpconf配置文件
vi /etc/ntpconf
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system
#restrict default kod nomodify notrap nopeer noquery
restrict default nomodify
(允许任何IP的客户机都可以进行时间同步,如果是只允许某个网段的客户机进行时间同步可以这样写
restrict 1058260 mask 2552552550 nomodify)
restrict -6 default kod nomodify notrap nopeer noquery
# Permit all access over the loopback interface This could
# be tightened as well, but to do so would effect some of
# the administrative functions
restrict 127001
restrict -6 ::1
# Hosts on local network are less restricted
#restrict 19216810 mask 2552552550 nomodify notrap
# Use public servers from the poolntporg project
# Please consider joining the pool
#server 0rhelpoolntporg(默认时间服务器)
#server 1rhelpoolntporg(默认时间服务器)
#server 2rhelpoolntporg(默认时间服务器)
server 101281425 (手工设置的时间服务器)
(如果是可以直连外网,可以使用LINUX默认提供的三组标准时间服务器,否则可以自己指定一个同步时间源)
#broadcast 1921681255 key 42 # broadcast server
#broadcastclient # broadcast client
#broadcast 224011 key 42 # multicast server
#multicastclient 224011 # multicast client
#manycastserver 239255254254 # manycast server
#manycastclient 239255254254 key 42 # manycast client
# Undisciplined Local Clock This is a fake driver intended for backup
# and when no outside source of synchronized time is available
server 12712710 # local clock
fudge 12712710 stratum 10
3、以守护进程启动ntpd
#/etc/rcd/initd/ntpd -c /etc/ntpconf -p /tmp/ntpdpid
#/etc/rcd/initd/ntpd start
#ps -ef|grep ntpd
4、在ntp server上启动ntp服务后,ntp server自身或者与其server的同步的需要一个时间段,这个过程可能是5分钟,在这个时间之内在客户端运行ntpdate命令进行同步时会产生no server suitable for synchronization found的错误。
下面命令可以知道何时ntp server完成了和自身同步的过程
在ntp server上使用命令:
# watch ntpq -p
注意LOCAL的这个就是与自身同步的ntp server。
注意reach这个值,在启动ntp server服务后,这个值就从0开始不断增加,当增加到17的时候,从0到17是5次的变更,每一次是poll的值的秒数,是64秒5=320秒的时间。
二、配置时间同步客户机
vi /var/spool/cron/root(或crontab -e)
增加一行,在每天的1点10分、9点10分、17点10分与时间同步服务器进行同步并写入BIOS
10 1 ,9,17 root /usr/sbin/ntpdate 101281425; /sbin/hwclock -w
如果同步不正常,可以加输出日志或看系统日志
输出日志的方法:
10 1 ,9,17 root /usr/sbin/ntpdate 101281425>>/tmp/1txt; /sbin/hwclock -w
在1txt中可查看时间同步时的输出结果。
或者看/var/mail/root系统日志
Subject: Cron <root@tyzssq8> /usr/sbin/ntpdate 101281425;/sbin/hwclock -w
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=root>
X-Cron-Env: <USER=root>
Message-Id: <20121127103001076FF2090E@tyzssq8site>
Date: Tue, 27 Nov 2012 18:30:01 +0800 (CST)
27 Nov 18:29:59 ntpdate[6917]: step time server 101281425 offset -1361968 sec
可以看到同步成功了,如果未成功会报出错误。
三、无法同步的问题
检查ntp server主机的防火墙。可能是ntp server的防火墙屏蔽了upd 123端口。
可以用命令
#service iptables stop
时间自动同步服务器的域名。
timenistgov是美国标准技术院的时间自动同步服务器的域名。根据您的区域设置和IP地址的区域分布不同,不同的服务器域名适用于不同区域。
timenistgov是美国标准技术院的时间自动同步服务器的域名。也就是从WindowsNT40Workstation时代开始就有的。后来美国标准技术院又新增了time-anistgov、time-bnistgov、time-nwnistgov。
0条评论