麒麟系統上搭建ntp伺服器
發布時間: 2024-11-03 19:59:22
㈠ 麒麟伺服器怎麼下載ntp服務命令
麒麟伺服器離線下載下載ntp服務命令。
下載ntp的安裝包,網址在官網搜索ntp:可以為其配置ntpf將其設置為自動同步某伺服器時鍾。我們繼續執行安裝命令,方式一用rpm64rpm45進行安裝或者使用rpmivh和nodepsforce執行安裝命令。安裝之後試運行。
務端配置
1.首先安裝檢查伺服器是否安裝了ntp、ntpdate
# rpm -qa | grep ntp
ntpdate-4.2.6p5-29.el7.centos.x86_64
ntp-4.2.6p5-29.el7.centos.x86_64
2.如果沒有,需要使用安裝
# yum -y install ntp ntpdate
3.修改ntp配置文件/etc/ntp.conf
1)注釋以下配置
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
2)新增如下配置
#日誌文件
logfile /var/log/ntpd.log
#授權172.16.1.0網段上所有機器可以從這台機器上查詢和時間同步
restrict 172.16.1.0 mask 225.225.225.0 nomotify notrap
熱點內容