900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > centos系统关闭ntp服务器 CentOS 7配置NTP客户端

centos系统关闭ntp服务器 CentOS 7配置NTP客户端

时间:2021-11-16 08:30:48

相关推荐

centos系统关闭ntp服务器 CentOS 7配置NTP客户端

保持服务器时间准确,对于业务系统的运行、数据库中时间的记录等至关重要。通常的做法是为服务器配置NTP客户端服务,让服务器自己定时去与NTP服务器同步时间。

以CentOS 7服务器为例,为期配置NTP客户端的具体步骤如下:

一、查看本机时间,确定NTP服务器的可用性(本例中以东北大学NTP服务器ntp.为例)

# date //查看本机时间

# ntpdate ntp. //确认NTP服务器的可用性

二、配置NTP客户端

编辑ntp.conf文件,为NTP客户端配置NTP服务器的地址ntp.

// 编辑NTP配置文件

# vim /etc/ntp.conf

// 注释配置文件中原有的NTP服务器,并在其中添加自己所需的NTP服务器地址

# Use public servers from the project.

# Please consider joining the pool (http://www./join.html).

# server 0.centos. iburst

# server 1.centos. iburst

# server 2.centos. iburst

# server 3.centos. iburst

server ntp. iburst

三、将NTP配置为(自启动)服务,并启动运行

# systemctl enable ntpd.service //安装为服务

Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.

# systemctl start ntpd //启动运行

四、检查NTP客户端运行状态

# systemctl status ntpd

# ntpstat

# watch ntpq -p

ctrl+c 退出NTP监视器

# ntpdate ntp.

12 Jul 00:14:46 ntpdate[19640]: the NTP socket is in use, exiting //提示NTP socket已经被使用

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。