波多野结衣中文无码,一区二区三区中文字幕人妻,日本福利一区二区三区四区,久久er99精品国产一区

產(chǎn)品推薦:氣相|液相|光譜|質(zhì)譜|電化學(xué)|元素分析|水分測定儀|樣品前處理|試驗機(jī)|培養(yǎng)箱


化工儀器網(wǎng)>技術(shù)中心>解決方案>正文

歡迎聯(lián)系我

有什么可以幫您? 在線咨詢

如何快速搭建Time Server

來源:上海銳呈電氣有限公司   2011年03月29日 22:20  

 

 
  春去春來,一轉(zhuǎn)眼在CU已經(jīng)混了一年了。這一年來,我在CU學(xué)了很多很多,感謝CU,感謝大家的支持和關(guān)愛。
  我是做技術(shù)的,思來想去還是寫一篇技術(shù)方面的文檔,來紀(jì)念一下這個特別的日子吧。閑言少敘,言歸正傳。
  一.Time Server的搭建(在此我們使用ntp:Network Time Protocol)
  Time Server即時間服務(wù)器。我們經(jīng)常會發(fā)現(xiàn)服務(wù)器上的時間不正確,這樣會影響到我們的應(yīng)用,有時甚至?xí)硪恍┎涣己蠊?。比如影響我們的備份,影響我們的?shù)據(jù)庫的更新等。比較常見的解決方法是與公網(wǎng)上的時間服務(wù)器同步(只用使用crontab執(zhí)行00 02 * * * /usr/sbin/ntpdate 195.13.1.153就行了,后面的195.13.1.153就是公網(wǎng)上可以用的時間服務(wù)器之一),但這樣做計算機(jī)必須能連接公網(wǎng),這樣也許會有一些安全問題。并且如果你的計算機(jī)在內(nèi)網(wǎng)不能直接連接公網(wǎng)的時間服務(wù)器的話,那就……今天我們就來講一講搭建我們自己的時間服務(wù)器的做法。
  方法一:時間服務(wù)器與公網(wǎng)上的時間服務(wù)器同步,其它機(jī)器與自己的時間服務(wù)器同步。缺點:時間服務(wù)器還要暴露在公網(wǎng)上。
  步驟:
  1.檢查是否有相應(yīng)的包
代碼:
# rpm -qa |grep ntp
ntp-4.1.1a-9
chkfontpath-1.9.6-3
 
  如果沒有ntp這個包,則從光盤上裝上。執(zhí)行下面命令安裝NTP的RPM包:
  # rpm -ivh ntp-4.1.1a-9.i386.rpm(我使用的是redhat8.0,請根據(jù)你的實際情況安裝對應(yīng)的包)
 
  2.修改配置文件
   /etc/ntp.conf是ntp的主要配置文件,里面設(shè)置了你用來同步時間的時間服務(wù)器的域名或者IP地址,下面是到互聯(lián)網(wǎng)同步時間的zui基本的配置:
  首先我們來定義自己喜歡的時間服務(wù)器:(可用的時間服務(wù)器,參看http://chinaunix.net/jh/5/100591.html,或者參看:http://www.eecis.udel.edu/~mills/ntp/servers.html)
代碼:
server 195.13.1.153
server 194.137.39.67
 
  接下來,我們設(shè)置上面兩臺服務(wù)器的訪問權(quán)限,在這個例子中我們不允許它們修改或者查詢我們配置在Linux上的NTP服務(wù)器。
代碼:
restrict 195.13.1.153 mask 255.255.255.255 nomodify notrap noquery
restrict 194.137.39.67 mask 255.255.255.255 nomodify notrap noquery
 
  說明:掩碼255.255.255.255是用來限制遠(yuǎn)程NTP服務(wù)器的掩碼地址。
  然后設(shè)置允許訪問的內(nèi)網(wǎng)機(jī)器。請注意,配置中noquery已經(jīng)去掉了:
代碼:
restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap
 
  在此例中,掩碼地址擴(kuò)展為255,因此從192.168.1.1-192.168.1.254的計算機(jī)都可以使用我們的NTP服務(wù)器來同步時間。如果你想限制的更嚴(yán)格一點,你可以修改你的掩碼。
 
  zui后,也是zui重要的是默認(rèn)的限制配置要從你配置文件中刪除,否則它將覆蓋你所有的配置選項,你會發(fā)現(xiàn)如果不刪除該配置,你的時間服務(wù)器將只能和自己通訊。如果ntp.conf中有以下一行,請將它注釋:
代碼:
# restrict default ignore
 
  3.檢查可用性
  a.保存你的配置文件,然后對每個你在ntp.conf里配置的時間服務(wù)器執(zhí)一下查詢命令,確保這些上游時間服務(wù)器可用。
代碼:
# ntpdate 195.13.1.153
    27 Jun 10:12:01 ntpdate[25475]: adjust time server 133.100.11.8 offset -0.127154 sec
# ntpdate 194.137.39.67
    27 Jun 10:12:06 ntpdate[25478]: adjust time server 133.100.9.2 offset 0.010008 sec
 
  b.執(zhí)行下列命令
  # ntpq -p
…… ……輸出略
 
  一個可以證明同步問題的證據(jù)是所有遠(yuǎn)程服務(wù)器的jitter值是4000并且delay和reach的值是0。
 
代碼:
remote           refid      st t when poll reach   delay   offset jitter
 
 ==============================================================================
 
   LOCAL(0)        LOCAL(0)        10 l    -   64    7    0.000    0.000   0.008
 
   *               0.0.0.0         16 u    -   64    0    0.000    0.000 4000.00
 
 
  4.設(shè)置自啟動
  為了使NTP服務(wù)可以在系統(tǒng)引導(dǎo)的時候自動啟動,執(zhí)行:
 
代碼:
# chkconfig ntpd on
 
 
  啟動/關(guān)閉/重啟NTP的命令是:
代碼:
 
    # /etc/init.d/ntpd start
    # /etc/init.d/ntpd stop
# /etc/init.d/ntpd restart
 
  5.客戶端的設(shè)置
  a.linux客戶端
  以root身份登錄,執(zhí)行crontab -e輸入00 02 * * * /usr/sbin/ntpdate 192.168.1.1(換成你的Time Server的ip)
  這樣就會在每天的凌晨兩點自動與Time Server同步時間。
  b.windows Xp客戶端
  雙擊右下角的時間,出現(xiàn)“日期和時間屬性”的窗口,選擇Internet 時間,在服務(wù)器一欄中輸入你的Time Server的ip,點擊"立即更新",過幾秒鐘將能看到更新成功的提示。然后勾選“自動與Internet時間服務(wù)器同步”。點擊確定。
  方法二:時間服務(wù)器與自己的硬件時鐘同步,其它機(jī)器與時間服務(wù)器同步。缺點:如果Time Server的硬件時鐘不準(zhǔn)確,則所有的時間將不準(zhǔn)確。優(yōu)點:更安全,沒有暴露在公網(wǎng)上的機(jī)器。
  unix類系統(tǒng)的時鐘都有兩種,一種是硬件時鐘,一種是系統(tǒng)時鐘。在此不在詳述。步驟如下:
  1.校準(zhǔn)Time server的硬件時鐘(可以直接在bios中設(shè)置),或者用hwclock命令來校對,例如: hwclock --set --date="6/16/04 11:14:05"
  2.設(shè)置系統(tǒng)時間和硬件時鐘同步:
   輸入:hwclock --hctosys.
  3.修改配置文件
   vi /etc/ntp.conf,我的ntp.conf如下
代碼:
# Prohibit general access to this service.
# restrict default ignore
 
# Permit all access over the loopback interface. This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 127.0.0.1
 
 
# -- CLIENT NETWORK -------
# Permit systems on this network to synchronize with this
# time service. Do not permit those systems to modify the
# configuration of this service. Also, do not use those
# systems as peers for synchronization.
# restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap
 
 
# --- OUR TIMESERVERS -----
# or remove the default restrict line
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
 
# restrict mytrustedtimeserverip mask 255.255.255.255 nomodify notrap noquery
 
 
 
# --- NTP MULTICASTCLIENT ---
#multicastclient                        # listen on default 224.0.1.1
# restrict 224.0.1.1 mask 255.255.255.255 notrust nomodify notrap
# restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap
restrict 192.168.1.0 mask 255.255.255.0 notrust nomodify notrap
 
# --- GENERAL CONFIGURATION ---
#
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available. The
# default stratum is usually 3, but in this case we elect to use stratum
# 0. Since the server line does not have the prefer keyword, this driver
# is never used for synchronization, unless no other other
# synchronization source is available. In case the local host is
# controlled by some external source, such as an external oscillator or
# another protocol, the prefer keyword would cause the local host to
# disregard all other synchronization sources, unless the kernel
# modifications are in use and declare an unsynchronized condition
#
#server 127.127.1.0     # local clock
server 127.127.1.0 prefer
fudge   127.127.1.0 stratum 10
 
#
# Drift file. Put this in a directory which the daemon can write to.
# No symbolic links allowed, either, since the daemon updates the file
# by creating a temporary in the same directory and then rename()'ing
# it to the file.
#
driftfile /etc/ntp/drift
broadcastdelay 0.008
 
#
# Authentication delay. If you use, or plan to use someday, the
# authentication facility you should make the programs in the auth_stuff
# directory and figure out what this number should be on your machine.
#
authenticate yes
 
 
#
# Keys file. If you want to diddle your server at run time, make a
# keys file (mode 600 for sure) and define the key number to be
# used for making requests.
#
# PLEASE DO NOT USE THE DEFAULT VALUES HERE. Pick your own, or remote
# systems might be able to reset your clock at will. Note also that
# ntpd is started with a -A flag, disabling authentication, that
# will have to be removed as well.
#
keys            /etc/ntp/keys
 
  其它設(shè)置和方法一相同,啟動ntp服務(wù),配置客戶端即可。

免責(zé)聲明

  • 凡本網(wǎng)注明“來源:化工儀器網(wǎng)”的所有作品,均為浙江興旺寶明通網(wǎng)絡(luò)有限公司-化工儀器網(wǎng)合法擁有版權(quán)或有權(quán)使用的作品,未經(jīng)本網(wǎng)授權(quán)不得轉(zhuǎn)載、摘編或利用其它方式使用上述作品。已經(jīng)本網(wǎng)授權(quán)使用作品的,應(yīng)在授權(quán)范圍內(nèi)使用,并注明“來源:化工儀器網(wǎng)”。違反上述聲明者,本網(wǎng)將追究其相關(guān)法律責(zé)任。
  • 本網(wǎng)轉(zhuǎn)載并注明自其他來源(非化工儀器網(wǎng))的作品,目的在于傳遞更多信息,并不代表本網(wǎng)贊同其觀點和對其真實性負(fù)責(zé),不承擔(dān)此類作品侵權(quán)行為的直接責(zé)任及連帶責(zé)任。其他媒體、網(wǎng)站或個人從本網(wǎng)轉(zhuǎn)載時,必須保留本網(wǎng)注明的作品第一來源,并自負(fù)版權(quán)等法律責(zé)任。
  • 如涉及作品內(nèi)容、版權(quán)等問題,請在作品發(fā)表之日起一周內(nèi)與本網(wǎng)聯(lián)系,否則視為放棄相關(guān)權(quán)利。
企業(yè)未開通此功能
詳詢客服 : 0571-87858618
色综合久久久久综合激情| 99亚洲国产精品18久久| 精品日韩一区二区电影| 久久久久国产精品熟女影院| 午夜亚洲在在线观看| 亚洲精品伦理一区二区三区青春| 久久久久亚洲av毛片大| 国产精品一区二区97| 久久久久国产精品老熟女| 99亚洲视频一区二区| 国产精品久久久久国产三| 久久99精品免费免费| 人妻精品久久一区二区| 精品人妻一区二区三区久久夜夜嗨| 一区二区不卡99精品日韩| 国产精品一区二区久久| 盗盗摄婷婷精品一区二区| 日韩欧美一区二区在线播放视频| 在线十亚洲十欧美十日本专区| 日本午夜羞羞在线观看| 色婷婷是五月综合色| 中文字幕日韩在线高清欧美| 久久久久亚洲av毛片大| 国产白丝一区二区三区| 2020国自产拍精品网站| 久久久久久国产综合精品| 青青草原精品国产亚洲av| 美女草草影院在线观看视频| 91久久久久人妻精品专区| 日本一区二区三区免费的视频| 欧美日韩一区二区中文字幕| 一级国产一级日韩一级欧美| 国产一级二级三级精品| 欧美大片免费看片入口| 中文字幕人妻女同一区| 久久99老妇伦国产熟女高清| 精品国产污免费网站入口| 日韩久久精品一区二区三区介绍| 操久久久久久久久久久久久久久久久| 中文字幕日韩电影在线| 日韩精品高清在线观看|