发新话题
打印

linux下同步时间

linux下同步时间

同步系统内的时间,命令如下
[root@slave38 mysql]# ls /etc/localtime -l
-rw-r--r-- 1 root root 405 08-01 20:28 /etc/localtime
[root@slave38 mysql]# rm -f /etc/localtime
[root@slave38 mysql]# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
[root@slave38 mysql]# date
2010年 08月 14日 星期六 08:17:07 CST
[root@slave38 mysql]# /usr/bin/rdate -s time-b.nist.gov
rdate: timeout for time-b.nist.gov
[root@slave38 mysql]# /usr/sbin/ntpdate 210.72.145.44
14 Aug 21:38:16 ntpdate[3895]: step time server 210.72.145.44 offset 47850.273129 sec
[root@slave38 mysql]# date
2010年 08月 14日 星期六 21:38:20 CST

TOP

发新话题