date
-s"2017-03-03 03:03:03"
yum install ntpdate
服務操作說明:
service crond stop ## 關閉服務
service crond restart ## 重啟服務
service crond reload ## 重新載入配置
service crond status ## 檢視 crontab 服務狀態:
chkconfig crond –list
## 檢視 crontab 服務是否已設定為開機啟動
chkconfig crond on
## 加入開機自動啟動
命令示例:
配置例項:
配置內網ntp-server(192.168.1.135)
ntpstat 命令檢視時間同步狀態,這個一般需要5-10分鐘後才能成功連線和同步。所以,伺服器啟動後需要稍等下。
剛啟動的時候,一般是:
# ntpstat
unsynchronised
time
server re-starting
polling server every 64 s
連線並同步後:
synchronised to ntp server (202.112
.10.36) at stratum 3
time correct to within 275 ms
polling server every 256 s
ok,內網的ntpd服務已經配置完成,如果所有正常後,開始配置內網的其他裝置與這台伺服器作為時間同步服務。
配置內網ntp-clients
首先需要安裝ntpd服務,然後配置為自啟動(與ntp-server完全一樣)。然後找其中一台配置/etc/ntp.conf檔案,配置完成驗證通過後,拷貝到其他客戶端機器,直接使用即可。
設定開機自啟
修改/etc/ntp.conf檔案配置資訊
driftfile /var/lib/ntp/drift
restrict 127.0.0.1
restrict -6 ::1
# 配置時間伺服器為本地的時間伺服器
server 192.168.1.135
restrict 192.168.1.135 nomodify notrap noquery
server 127.127.1.0
# local clock
fudge 127.127.1.0 stratum 10
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
修改好之後儲存退出,請求伺服器前,請先使用ntpdate手動同步下時間
ntpdate -u 192.168.0.135
22 dec 17:09:57 ntpdate[6439]: adjust time server 192.168.1.135 offset 0.004882 sec
## sync cluster time
0-59/10 * * * * /usr/sbin/ntpdate cn.pool
.ntp
.org
## sync cluster time
10 * *
* * /usr/sbin/ntpdate 時間伺服器主機ip
搭建時間伺服器
1 請確認是否已經安裝ntp root web002 yum.repos.d rpm qa grep ntp ntpdate 4.2.6p5 28.el7.centos.x86 64 ntp 4.2.6p5 28.el7.centos.x86 64 2 若只有ntpdate而未見ntp,則需刪除原有...
實驗 搭建時間伺服器 郵件伺服器
1 搭建時間伺服器,客戶端可在每天早晨的9 00整從ntp伺服器更新自己的時間。2 搭建郵件伺服器,使用wukong ceshi.com給wuneng ceshi.com使用者發一封郵件,內容為biechile。1 1.服務端 裝chrony包 yum install y chrony 2.編輯配置...
ntp時間伺服器搭建
我在學習過程中經常遇到伺服器時間不一致導致很多故障,經過了很多次麻煩的經歷之後決定寫出來,以便於自己以後需要再來拿出來用,也希望可以幫到需要的人 yum install y ntp ntpdate備份配置檔案 cp etc ntp.conf etc ntp.conf.bak將注釋掉的去掉,新建配置文...