linux同步时间(ntpdate)的服务器IP,ntpdate -u
时间:2014-08-28 18:37 来源:linux.it.net.cn 作者:it
stdtime.gov.hk 210.0.235.14(香港授时中心的官方时间同步服务器IP域名)
time.stdtime.gov.tw 59.124.196.84 (台湾授时中心的官方时间同步服务器IP域名)
192.43.244.18 (美国授时中心的官方时间同步服务器IP域名)
210.72.145.44 (中国西安授时中心的官方时间同步服务器IP域名)
# ntpdate -u 192.43.244.18 210.72.145.44 210.0.235.14 59.124.196.84
# ntpdate 133.100.9.2
*/30 * * * * /usr/sbin/ntpdate stdtime.gov.hk
210.72.145.44是中国国家授时中心的官方服务器
133.100.9.2 来自:日本国家授时中心的官方服务器
1. 查看当前时区
# cat /etc/sysconfig/clock
2. 修改设置时区
方法(1)
# tzselect
方法(2) 仅限于RedHat Linux 和 CentOS) 这种方法在rhel4u4中没看到系统命令
# timeconfig
3. 复制相应的时区文件,替换系统默认时区
# cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime
对于中国服务器则执行:
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
4. 将当前时间写入BIOS永久生效(避免重启后失效)
# hwclock
/usr/sbin/ntpdate -u 192.43.244.18 210.0.235.14 210.72.145.44
修改linux时区
5.定时同步时间
*/20 * * * * ( /usr/sbin/ntpdate -u 192.43.244.18 210.0.235.14 210.72.145.44 2 ) && ( hwclock --systohc )>> (责任编辑:IT)
stdtime.gov.hk 210.0.235.14(香港授时中心的官方时间同步服务器IP域名) time.stdtime.gov.tw 59.124.196.84 (台湾授时中心的官方时间同步服务器IP域名) 192.43.244.18 (美国授时中心的官方时间同步服务器IP域名) 210.72.145.44 (中国西安授时中心的官方时间同步服务器IP域名) # ntpdate -u 192.43.244.18 210.72.145.44 210.0.235.14 59.124.196.84 # ntpdate 133.100.9.2 */30 * * * * /usr/sbin/ntpdate stdtime.gov.hk 210.72.145.44是中国国家授时中心的官方服务器 133.100.9.2 来自:日本国家授时中心的官方服务器 1. 查看当前时区 # cat /etc/sysconfig/clock 2. 修改设置时区 方法(1) # tzselect 方法(2) 仅限于RedHat Linux 和 CentOS) 这种方法在rhel4u4中没看到系统命令 # timeconfig 3. 复制相应的时区文件,替换系统默认时区 # cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime 对于中国服务器则执行: # cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 4. 将当前时间写入BIOS永久生效(避免重启后失效) # hwclock /usr/sbin/ntpdate -u 192.43.244.18 210.0.235.14 210.72.145.44 修改linux时区 5.定时同步时间 */20 * * * * ( /usr/sbin/ntpdate -u 192.43.244.18 210.0.235.14 210.72.145.44 2 ) && ( hwclock --systohc )>> (责任编辑:IT) |