要在CentOS中使用NTP服務同步時間,可以按照以下步驟操作:
sudo yum install ntp
sudo systemctl start ntpd
sudo systemctl enable ntpd
編輯NTP配置文件/etc/ntp.conf
,可以根據自己所在地區選擇合適的NTP服務器,添加如下內容:
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
sudo systemctl restart ntpd
sudo systemctl status ntpd
通過以上步驟,您的CentOS系統應該已經成功配置NTP服務并同步了時間。