1. 程式人生 > 其它 >|NO.Z.00009|——————————|NavigationLog|——|NTP.V02|

|NO.Z.00009|——————————|NavigationLog|——|NTP.V02|



[NavigationIng:NTP.V02]                                                                                               [NavigationIng.了不起]








一、配置主機時間同步:
### --- 檢視當前服務端和客戶端版本一致

[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core) 
二、ntp.server端配置:hadoop01
### --- 進行外網時間同步

~~~		# Hadoop01安裝ntpdate
[root@localhost ~]# yum  install -y ntpdate
~~~		# 啟動ntpdate
[root@localhost ~]# systemctl start ntpdate
[root@localhost ~]# systemctl enable ntpdate
~~~		# 通過網路連線外網進行時鐘同步,必須保證虛擬機器連上外網
[root@localhost ~]#  ntpdate us.pool.ntp.org;
17 Oct 12:56:25 ntpdate[7683]: adjust time server 50.205.57.38 offset 0.007918 sec

~~~		# 阿里雲時鐘同步服務器
[root@localhost ~]# ntpdate ntp4.aliyun.com 
17 Oct 12:57:22 ntpdate[7684]: adjust time server 203.107.6.88 offset -0.007126 sec

~~~		注:叢集中其他機器與這臺機器定時的同步時間,比如,每 隔十分鐘,同步一次時間。
### --- 時間伺服器配置(必須root使用者)

~~~		# 安裝ntpd服務
[root@localhost ~]# yum -y install ntp
### --- 編輯/etc/ntp.conf

~~~		# 編輯/etc/ntp.conf配置檔案
[root@localhost ~]# vim /etc/ntp.conf
restrict default nomodify notrap nopeer noquery                             //第8行:開啟配置始終同步廣播地址
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap                     //開啟17行;同步源:配置同步源

# server 0.centos.pool.ntp.org iburst                                       //第21~24行:註釋掉
# server 1.centos.pool.ntp.org iburst
# server 2.centos.pool.ntp.org iburst
# server 3.centos.pool.ntp.org iburst
 
server 127.127.1.0 # local clock                                            //第25~26行:新增這兩行
fudge 127.127.1.0 stratum 10
### --- 配置以下內容,保證BIOS與系統時間同步 vim /etc/sysconfig/ntpd新增一行內容

~~~		# 配置BIOS時間與系統時間同步
[root@localhost ~]# vim /etc/sysconfig/ntpd
SYNC_HWLOCK=yes
### --- 啟動ntpd並設定開機自啟動

~~~		# 啟動ntpd服務
[root@localhost ~]# systemctl restart ntpd
[root@localhost ~]# systemctl enable ntpd 
三、配置ntp.client端配置
### --- 配置ntp.client端服務:Hadoop02,Hadoop03

~~~		# 安裝ntpdate服務
[root@localhost ~]# yum install -y ntpdate
~~~		# 啟動ntpdate
[root@localhost ~]# systemctl start ntpdate
[root@localhost ~]# systemctl enable ntpdate
~~~		# 在其他機器配置10分鐘與時間服務器同步一次

[root@localhost ~]# crontab -e
*/10 * * * * /usr/sbin/ntpdate 192.168.1.121                        //注:另外兩臺機器與192.168.1.121進行時鐘同步
~~~		# 修改任意機器時間
[root@localhost ~]# date -s "2020-06-20 11:11:11"

~~~		# 十分鐘後檢視機器是否與時間服務器同步
[root@localhost ~]# date








===============================END===============================


Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warm'd both hands before the fire of life.It sinks, and I am ready to depart                                                                                                                                                    ——W.S.Landor



來自為知筆記(Wiz)