Loading... ![](https://puep.qpic.cn/coral/Q3auHgzwzM4fgQ41VTF2rNu6xNdibm7oOwOsQibCThwmnnREPxvFB2dg/0) 方法1:与一个已知的时间服务器同步 ```shell ntpdate time.nist.gov ``` 其中 time.nist.gov 是一个时间服务器. 删除本地时间并设置时区为上海 ```shell rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ``` 方法2:linux自动同步时间 ```shell vi /etc/crontab ``` 加上一句: ```shell 00 0 1 * * root rdate -s time.nist.gov ``` 配置时间服务器配置(192.168.10.1) ```shell 1)、# rpm -ivh ntp-4.1.2-4.EL3.1.i386.rpm 2)、# vi /etc/ntp.conf ``` 注释一行: ```shell restrict default ignore ``` 加入一行: ```shell restrict 192.168.10.0 mask 255.255.255.0 notrust nomodify notrap ``` ```shell 3)、# vi /etc/ntp/step-tickers ``` 加入一行: ```shell pool.ntp.org ``` 这样每次ntpd启动时,会自动连接该国际标准时间服务器; ```shell 4)、# service ntpd start 5)、# netstat -an |grep 123 ``` 确保该端口以udp方式开放 时间客户端配置(192.168.10.2) ```shell 1)、# ntpdate 192.168.10.2 ``` 应该显示同步成功 ```shell 2)、# crond -e ``` 加入 ```shell 0-59/10 * * * * /usr/sbin/ntpdate 192.168.10.1 ``` 每隔10分钟同步一次时间 最后修改:2022 年 08 月 05 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏