歡迎您光臨本站 註冊首頁

linux下設置時間同步伺服器(NTP)

←手機掃碼閱讀     火星人 @ 2014-03-08 , reply:0

linux下設置時間同步伺服器
兩種辦法
第一,可以從時間伺服器time.nist.gov同步.
在crontab中加入:
00 0 1 * * root rdate -s time.nist.gov
第二,自己建個時間伺服器
1). # rpm -ivh
ntp-4.2.2p1-7.el5.i386.rpm
2). # vi /etc/ntp.conf
註釋一行
restrict default ignore
加入一行
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
3). # vi /etc/ntp/step-tickers
加入一行
pool.ntp.org
這樣每次ntpd啟動時,會自動連接該國際標準時間伺服器;
4). # service ntpd start
5). # netstat -an |grep 123
確保該埠以udp方式開放
時間客戶端配置(192.168.1.2)
1). # ntpdate -s 192.168.1.1
應該顯示同步成功
2). # crond -e
加入
0-59/10 * * * * /usr/sbin/ntpdate 192.168.1.1
表示每隔10分鐘同步一次時間



[火星人 ] linux下設置時間同步伺服器(NTP)已經有312次圍觀

http://coctec.com/docs/linux/show-post-46003.html