當linux伺服器的時間不對的時候,可以使用ntpdate工具來校正時間。
服務端安裝
安裝ntp:
yum install ntp
配置時間源
vi /etc/ntp.conf
server 210.72.145.44
server ntp.api.bz
server 2.centos.pool.ntp.org
配置時間自動同步
echo '*/30 * * * * /usr/sbin/ntpdate time7.aliyun.com >/dev/null 2>&1' > /tmp/crontab2.tmp
crontab /tmp/crontab2.tmp
配置客戶端
配置對客戶端(172.16.0.0/24的網段機器)提供ntp服務
# vi /etc/ntp.conf
restrict 172.16.0。0 mask 255.255.255.0 nomodify notrap
配置ntp server的層數提供本地服務
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 2
設定開機時自動執行時間服務
systemctl enable ntpd
啟動或停止時間服務
# systemctl start ntpd
# systemctl stop ntpd
# systemctl restart ntpd
驗證ntp服務已經執行
pgrep ntpd
更新本伺服器的時間
ntpdate -u 210.72.145.44
配置iptable規則允許客戶端訪問本機ntp sever
vi /etc/sysconfig/iptables
增加一行(ntp server使用udp 123埠)
-a input -m state --state new -m udp -p udp --dport 123 -j accept
重啟iptables
service iptables restart
name
iplocation
210.72.145.44
210.72.145.44
中國(國家授時中心)
133.100.11.8
133.100.11.8
日本(福岡大學)
time-a.nist.gov
129.6.15.28
nist,gaithersburg,maryland
time-b.nist.gov
129.6.15.29
nist,gaithersburg,maryland
time-a.timefreq.bldrdoc.gov
132.163.4.101
nist,boulder,colorado
time-b.timefreq.bldrdoc.gov
132.163.4.102
nist,boulder,colorado
time-c.timefreq.bldrdoc.gov
132.163.4.103
nist,boulder,colorado
utcnist.colorado.edu
128.138.140.44
universityofcolorado,boulder
time.nist.gov
192.43.244.18
ncar,boulder,colorado
time-nw.nist.gov
131.107.1.10
microsoft,redmond,washington
nist1.symmetricom.com
69.25.96.13
symmetricom,sanjose,california
nist1-dc.glassey.com
216.200.93.8
abovenet,virginia
nist1-ny.glassey.com
208.184.49.9
abovenet,newyorkcity
nist1-sj.glassey.com
207.126.98.204
abovenet,sanjose,california
nist1.aol-ca.truetime.com
207.200.81.113
truetime,aolfacility,sunnyvale,california
nist1.aol-va.truetime.com
64.236.96.53
truetime,aolfacility,virginia
ntp.sjtu.edu.cn 202.120.2.101 上海交通大學網路中心
s1a.time.edu.cn 北京郵電大學
s1b.time.edu.cn 清華大學
s1c.time.edu.cn 北京大學
s1d.time.edu.cn 東南大學
s1e.time.edu.cn 清華大學
s2a.time.edu.cn 清華大學
s2b.time.edu.cn 清華大學
s2c.time.edu.cn 北京郵電大學
s2d.time.edu.cn 西南地區網路中心
s2e.time.edu.cn 西北地區網路中心
s2f.time.edu.cn 東北地區網路中心
s2g.time.edu.cn 華東南地區網路中心
s2h.time.edu.cn 四川大學網路管理中心
s2j.time.edu.cn 大連理工大學網路中心
s2k.time.edu.cn cernet桂林主節點
s2m.time.edu.cn 北京大學
linux上安裝memecached安裝小記!
最近在專案中使用了memcached來控制緩衝,到專案部署階段,memcached在linux上部署產生了困難,耗時半天,在此,整理安裝步驟,希望對大家有所幫助。我安裝時在網上參考多個資料,最有用的是 1.進入 usr lib目錄,使用命令 ls al libevent 檢視是否已安裝,linux系...
linux上安裝php,mysql,apche步驟
原始碼安裝php 在php官網找到5.6.40的tar包的鏈結 在linux上的 使用者主目錄 cd 用 wget 鏈結 tar zxvf 壓縮包名 解壓 configure prefix usr local php5.6 enable fpm 在當前目錄 make 在當前目錄 make insta...
Linux上安裝軟體
2.從磁碟安裝deb軟體包 3.從二進位制軟體包安裝 4.從源 編譯安裝 sudo apt get install software eg.sudo apt get install vim 工具 tool 說明install 其後加上軟體包名,用於安裝乙個軟體包 update upgrade 公升級...