linux系统设置定时同步ntp服务器
时间: 2023-11-09 09:06:13 浏览: 172
要在Linux系统上设置定时同步NTP服务器,可以按照以下步骤操作:
1. 安装NTP软件包。在大多数Linux发行版中,NTP软件包已经预安装,如果没有安装可以通过以下命令进行安装:
```
sudo apt-get install ntp
```
2. 配置NTP服务器。编辑NTP配置文件`/etc/ntp.conf`,添加或修改NTP服务器地址,例如:
```
server ntp1.example.com
server ntp2.example.com
```
如果你不知道可用的NTP服务器,可以在 https://www.ntp.org/ntp-servers.html 上找到一个NTP服务器列表。
3. 启动NTP服务。使用以下命令启动NTP服务:
```
sudo systemctl start ntp
```
如果你的系统不支持systemctl命令,可以使用以下命令启动NTP服务:
```
sudo service ntp start
```
4. 设置NTP服务开机自启动。使用以下命令将NTP服务设置为开机自启动:
```
sudo systemctl enable ntp
```
或者,如果你的系统不支持systemctl命令,可以使用以下命令将NTP服务设置为开机自启动:
```
sudo update-rc.d ntp defaults
```
5. 验证NTP同步。使用以下命令验证NTP是否同步成功:
```
ntpq -p
```
如果输出类似于以下内容,则表示NTP同步成功:
```
remote refid st t when poll reach delay offset jitter
==============================================================================
+ntp1.example.c 123.45.67.89 2 u 68 128 377 0.123 -0.456 0.789
*ntp2.example.c 123.45.67.90 3 u 63 128 377 0.234 -0.567 0.890
```
6. 设置定时同步。使用以下命令编辑crontab文件:
```
crontab -e
```
在文件末尾添加以下行:
```
*/5 * * * * /usr/sbin/ntpdate ntp1.example.com
```
这将在每5分钟同步一次NTP服务器。你可以根据需要更改时间间隔和NTP服务器地址。
保存并关闭文件后,定时同步将自动启动。
阅读全文