centos最小化安裝后登陸:
login as: root
root@192.168.205.132's password:
Last login: Thu Apr 25 13:33:52 2019
[root@localhost ~]# hostname -I 查看本機ip信息
192.168.205.132
[root@localhost ~]# yum install -y ntp 通過yum安裝ntp服務
[root@localhost ~]# rpm -qa ntp 驗證ntp服務安裝情況
ntp-4.2.6p5-28.el7.centos.x86_64
[root@localhost ~]# vi /etc/ntp.conf 設置ntp配置文件
restrict 192.168.205.0 加上可以接收ntp的網段
server ntp1.aliyun.com iburst
server time.nist.gov iburst 設置本機需要同步的時間服務器,如果用本機時間,那么此處設置本機ip
[root@localhost ~]# systemctl start ntpd 啟動ntp服務
[root@localhost ~]# netstat -lnuto|grep 123 查看端口開啟情況
-bash: netstat: 未找到命令
[root@localhost ~]# yum -y install net-tools 找不到以上命令需要安裝net-tools
[root@localhost ~]# ntpq -p 查看ntp同步情況
[root@localhost ~]# firewall-cmd --permanent --add-port=123/udp 把udp 123端口加到防火墻里
success
[root@localhost ~]# firewall-cmd --reload
success
完成即可作為時間同步服務器。
掃一掃咨詢微信客服