Linux 同步时间脚本

#!/bin/sh

#send hosts to all node

iplist=(
10.130.2.21
10.130.2.22
10.130.2.40
10.130.2.41
10.130.2.42
10.130.2.43
10.130.2.44
10.130.2.45
10.130.2.49
10.130.2.50
10.130.2.51
10.130.2.53
10.130.2.54
10.130.2.55
10.130.2.56
10.130.2.57
10.130.2.58
10.130.2.59
10.130.2.60
10.130.2.62
10.130.2.63
10.130.2.64
10.130.2.65
10.130.2.66
10.130.2.117
10.130.2.118
10.130.2.119
10.130.2.200
10.130.2.201
10.130.2.202
10.130.2.220
10.130.2.240
10.130.2.245
10.130.2.248
10.130.2.249
10.130.3.218
10.130.3.219

)

user=dp

function ntpd()
{
ssh -t -p 22 $host "
sudo service ntpd restart    //重启ntpd服务
sudo ntpdate 10.4.22.240   //与时间服务器同步
sudo chkconfig ntpd on"     //开启ntpd

}

for host in ${iplist[*]};
do

ntpd $host

done

时间: 2024-10-04 06:18:29

Linux 同步时间脚本的相关文章

linux 同步时间 调试core内核

1.同步时间 #chkconfig --list | grep ntp ntpd 0:off 1:off 2:off 3:off 4:off 5:off 6:offntpdate 0:off 1:off 2:off 3:off 4:off 5:off 6:off #chkconfig ntpdate on // 自启动. #service ntpdate start // 开启此服务 #date // 此时时间即已更新 方法2: ntpdate time.nist.gov 2.调试core信息

Linux 同步时间

Linux里有2个时间: 硬件时间 系统时间 这2个时间不是同步的!如果有一天发现系统的时间不对了,可以分别看看这2个时间.硬件时间写在BIOS里,系统时间就是电脑显示的时间了. sudo hwclock -r 2014年12月31日 星期三 08时46分37秒 -0.214486 seconds 这个显示的时硬件时间. 在使用ntpdate同步网络时间后可以将时间写入到BIOS: 同步网络时间: sudo ntpdate time.windows.com 31 Dec 20:21:34 ntp

linux同步时间

ntpdate time.nist.gov

Linux 局域网同步时间

选择一台能上外网的机器作为时间服务器(都不能上亦可以,任选一台即可,但是只能保证局域网内时间同步) 配置此时间服务器 安装 ntp 在 /etc/ntp.conf 中配置 [plain] view plain copy restrict 127.0.0.1 //给予本机所有权限 restrict -6 ::1 //不大明白,针对IPV6吗? restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap //给局域网内主机同步时间的权限,但不允许修

linux同步网络时间

如何让linux时间与internet时间同步(centos) 文章内容来源:http://www.cnblogs.com/itxiongwei/p/5556558.html 笔者在使用linux时(虚拟机),经常会发现使用一段时间后,linux时间和我的 宿主机(真实机)的时间不一致,而宿主机的时间确实是internet时间,安装linux时选择的时区也是Asia/Shanghai,那么今天我分享 的即为如何让linux时间与internet时间同步 在解决问题之前,我们首先来了解下面几个知识

linux系统时间修改及同步

时间修改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 //列出某

linux用rdate命令实现同步时间

用rdate命令实现同步时间 前两天说到用ntp时间服务器和ntpdate命令同步时间,今天简单记录下用rdate同步时间 http://blog.csdn.net/wyzxg/archive/2010/05/06/5561548.aspx 在各种linux中都有rdate命令 1. 选在一台linux作为master,然后启动上面的时钟服务 #chkconfig time on 如果不启动这个服务,在client运行rdate同步时间时会报错的 rdate: couldn't connect

linux服务器同步时间

linux下同步时间,至少有两种方法:rdate,ntpdate两种 第一先检测系统是否安装有这两条命令 rpm -qa |grep rdate rpm -qa |grep ntpdate 如果安装有的话就可以了,没有的话使用yum -y install rdate/ntpdate安装一下 rdate 功能说明:显示其他主机的日期与时间. 语 法:rdate [-ps][主机名称或IP地址...] 补充说明:执行rdate指令,向其他主机询问系统时间并显示出来. 参 数:  -p  显示远端主机

linux同步windows的时间

找了很多的资料,都没有windows做时间服务,linux同步windows的时间的,最后自己找了一些软件,终于搞定了,写出来给大家共享,以免大家多走弯路 首先在http://www.meinberg.de/english/sw/index.htm 下载了一个windows的NTP服务程序:ntp4171.zip windows 192.168.1.32 1.安装是提示设置服务器地址,我设置的本机widows机器的IP 2.ntpd的控制在: 控制面板->;管理工具->;组件服务-Networ