对于 Debian/Ubuntu 系统,使用 APT-GET 命令 或者 APT 命令 去安装 ntp。
$ sudo apt install ntp
对基于 Arch Linux 的系统,使用 Pacman 命令 去安装 ntp。
$ sudo pacman -S ntp
对 RHEL/CentOS 系统,使用 YUM 命令 去安装 ntp。
$ sudo yum install ntp
对于 openSUSE Leap 系统,使用 Zypper 命令 去安装 ntp。
$ sudo zypper install ntp
我已经在 CentOS7.2daygeek.com` 这台主机上安装和配置了 NTP 服务器,因此将其附加到所有的客户端机器上。
# vi /etc/ntp.conf
restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery restrict 127.0.0.1 restrict -6 ::1 server CentOS7.2daygeek.com prefer iburst driftfile /var/lib/ntp/drift keys /etc/ntp/keys
更新配置后重启服务:
对于 sysvinit 系统。基于 Debian 的系统需要去运行 ntp 而不是 ntpd 。
# service ntpd restart # chkconfig ntpd on
对于 systemctl 系统。基于 Debian 的需要去运行 ntp 和 ntpd 。
# systemctl restart ntpd # systemctl enable ntpd
重新启动 NTP 服务后等待几分钟以便从 NTP 服务器获取同步的时间。
在 Linux 上运行下列命令去验证 NTP 服务的同步状态。
# ntpq –p 或 # ntpq -pn -
remote refid st t when poll reach delay offset jitter ============================================================================== *CentOS7.2daygee 133.243.238.163 2 u 14 64 37 0.686 0.151 16.432
运行下列命令去得到 ntpd 的当前状态。
# ntpstat synchronised to NTP server (192.168.1.8) at stratum 3 time correct to within 508 ms polling server every 64 s
最后运行 date 命令。
# date Tue Mar 26 23:17:05 CDT 2019
如果你观察到 NTP 中输出的时间偏移很大。运行下列命令从 NTP 服务器手动同步时钟。当你执行下列命令的时候,确保你的 NTP 客户端应该为未活动状态。(LCTT 译注:当时间偏差很大时,客户端的自动校正需要花费很长时间才能逐步追上,因此应该手动运行以更新)
# ntpdate –uv CentOS7.2daygeek.com
【编辑推荐】
- 判断Linux系统是否被入侵,你需要几步?9个小技巧分享!
- 怎样在Ubuntu Linux上安装MySQL
- Linux操作系统中的Namespace是个什么鬼
- 从命令行关闭Linux计算机的5种方法
- 4种在Linux中检查默认网关或路由器IP地址的方法
【责任编辑:庞桂玉 TEL:(010)68476606】
点赞 0
(编辑:ASP站长网)
|