内网 centos7 同步某台电脑 时间
时间: 2023-08-03 09:09:37 浏览: 102
如果你想让内网中的某台 CentOS 7 服务器同步另外一台内网电脑的时间,可以按照以下步骤进行设置:
1. 安装 NTP:
```
sudo yum install ntp
```
2. 编辑 `/etc/ntp.conf` 文件,添加 NTP 服务器地址:
```
server <IP address of the computer that provides NTP service>
```
其中,`<IP address of the computer that provides NTP service>` 是提供 NTP 服务的电脑的 IP 地址。
3. 保存文件并退出,重启 NTP 服务:
```
sudo systemctl restart ntpd
```
这样,CentOS 7 服务器的时间就会自动同步到提供 NTP 服务的电脑的时间。如果想要手动同步,可以执行以下命令:
```
sudo ntpdate <IP address of the computer that provides NTP service>
```
其中,`<IP address of the computer that provides NTP service>` 是提供 NTP 服务的电脑的 IP 地址。
阅读全文