資源描述:
《centos5 時區(qū)、時間設(shè)置及ntp服務(wù)》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、設(shè)置CentOS的時區(qū)和時間http://be-evil.org/post-132.html首先,安裝ntp時間同步服務(wù)yuminstall-yntp然后,設(shè)置時區(qū)為CSTcp/usr/share/zoneinfo/Asia/Shanghai/etc/localtimevi/etc/sysconfig/clock修改時區(qū)為ZONE="Asia/Shanghai"最后,手動同步一次時間ntpdateus.pool.ntp.orgcentos5時區(qū)、時間設(shè)置及NTP服務(wù)http://www.zn05.com/forum.php?mod=vie
2、wthread&tid=21&highlight=&from=home時間的同步時是很重要的,往往可能就是時間同步問題導(dǎo)致的,而全球共分24個時區(qū),所以就需要ntp服務(wù)器進行同步各地區(qū)的時間。計算機上還有個硬件時間,也就是cmos時鐘,在windows系統(tǒng)中,系統(tǒng)啟動的時候直接從coms時鐘中讀取時間,關(guān)閉的時候往cmos中寫入,從而保持兩者的一致性。linux系統(tǒng)里是通過hwclock命令來讀取和設(shè)置硬件時鐘的,下面就來看看centos5下的ntp服務(wù)吧![root@centos5~]#hwclock????查看硬件時鐘2009年07月
3、04日星期六19時18分11秒-0.609827seconds。[root@centos5~]#hwclock--utc設(shè)置硬件時鐘為格林威治時間2009年07月05日星期日03時19分26秒-0.561311seconds[root@centos5~]#cat/etc/sysconfig/clock查看系統(tǒng)的硬件時鐘和時區(qū)配置文件ZONE="Asia/Shanghai"UTC=trueARC=false1.#查看時區(qū)??2.cat/etc/sysconfig/clock??3.#修改設(shè)置時區(qū)命令??4.tzselect??5.#也可以復(fù)
4、制相應(yīng)的時區(qū)文件,替換系統(tǒng)默認時區(qū)??6.cp/usr/share/zoneinfo/$主時區(qū)/$次時區(qū)/etc/localtime??[root@centos5~]#ls-l/usr/share/zoneinfo/Asia/Shanghai-rw-r--r--2rootroot4052008-03-11/usr/share/zoneinfo/Asia/Shanghai[root@centos5~]#date-R??查看系統(tǒng)所在時區(qū)Sun,01Feb200901:05:53+0800把系統(tǒng)時間寫入硬件時鐘[root@centos5~]#d
5、ate-s"2009-07-0419:04:00"2009年07月04日星期六19:04:00CST[root@centos5~]#date2009年07月04日星期六19:04:18CST[root@centos5~]#hwclock2009年07月05日星期日19時44分32秒-0.685570seconds[root@centos5~]#hwclock--systohc[root@centos5~]#hwclock2009年07月04日星期六19時04分56秒-0.653825seconds把硬件時鐘寫入系統(tǒng)時鐘[root@cent
6、os5~]#hwclock2009年07月03日星期五19時04分30秒-0.298749seconds[root@centos5~]#date-s"2009-07-0419:04:00"2009年07月04日星期六19:04:00CST[root@centos5~]#hwclock--hctosys[root@centos5~]#date2009年07月03日星期五19:05:02CST編譯方式安裝ntp服務(wù)http://www.ntp.org/downloads.html,從該主頁上下載源碼包,編譯并安裝[root@centos5~]
7、#cd/usr/local/src/[root@centos5src]#tar-zxvfntp-4.2.4p7.tar.gz[root@centos5src]#cdntp-4.2.4p7[root@centos5ntp-4.2.4p7]#./configure--prefix=/usr/local/ntp[root@centos5ntp-4.2.4p7]#make&&makeinstall[root@centos5/]#cd/usr/local/[root@centos5local]#lsbinetcgamesincludeliblibe
8、xecntpsbinsharesrc[root@centos5local]#lsntp/binlibman[root@centos5ntp]#cd./bin/[root@centos5bin]