NTP时间服务器安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NTP时间服务器安装相关的知识,希望对你有一定的参考价值。

  #NTP服务器安装
rpm -qa ntp
#yum -y install ntp
#配置NTP服务
vim /etc/ntp.conf
#restrict default kod nomodify notrap nopeer noquery
restrict default nomodify
# nomodify客户端可以同步
# 将默认时间同步源注释改用可用源
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server ntp1.aliyun.com
server time.nist.gov
#启动NTP服务器
# 如果计划任务有时间同步,先注释,两种用法会冲突。
/etc/init.d/ntpd start
ntpq -p
chkconfig ntpd on
chkconfig --list ntpd
ntpstat
ntpdate 10.0.0.61
#客户机时间同步
#客户机要等几分钟再与新启动的ntp服务器进行时间同步,否则会提示no server suitable for synchronization found错误。
ntpdate 10.0.0.61
# 将命令放入计划任务即可。
#服务器端,客户端定时任务配置
echo "*/1 * * * * /usr/sbin/ntpdate 10.0.0.61 >/dev/null 2>&1" >>/var/spool/cron/root
##sed -i ‘s#time.nist.gov#10.0.0.61#g‘ /var/spool/cron/root






























以上是关于NTP时间服务器安装的主要内容,如果未能解决你的问题,请参考以下文章

linux时间同步ntp服务的安装与配置

Ubuntu 安装 NTP 服务

自动化安装 NTP服务器

Ubuntu 安装 NTP 服务

NTP时间服务器的安装配置

CentOS7 NTP 安装配置