centos6.8 配置服务器NTP服务
1.1. 配置服务器NTP服务
1.1.1. 安装和配置NTP
先查看是否安装NTP
rpm -qa|grep ntp
如果没有安装则安装
yum �Cy install ntp
设置东八区时区为当前时区
rm -rf /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
手动同步下网络时间
ntpdate -u cn.pool.ntp.org
安装后进行配置
vi /etc/ntp.conf
//默认允许任何主机进行时间同步
restrict default ignore
//中国这边最活跃的时间服务器
server cn.pool.ntp.org perfer# 中国国家受时中心
server 0.cn.pool.ntp.org# 1.cn.pool.ntp.org
server 1.cn.pool.ntp.org
server asia.pool.ntp.org
server 0.asia.pool.ntp.org
server1.asia.pool.ntp.org
//允许上层时间服务器主动修改本机时间
restrict cn.pool.ntp.org nomodify notrap noquery
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 1.cn.pool.ntp.org nomodify notrap noquery
restrict asia.pool.ntp.org nomodify notrap noquery
restrict 0.asia.pool.ntp.org nomodify notrap noquery
restrict 1.asia.pool.ntp.org nomodify notrap noquery
//外部时间服务器不可用时,以本地时间作为时间服务
server 127.127.1.0 # local clock
fudge 127.127.1.0stratum 10
1.1.2. 设置NTP服务自启动
设置ntp为自启动项
chkconfig ntpd on
查看启动项2、3、4、5是否打开
chkconfig --list ntpd
启动NTP服务
/etc/init.d/ntpd restart
查看服务和监听,看红色标注的地方,表示当前ip连接和监听已正确
netstat -tlunp | grep ntp
查看NTPD服务情况,要等5-10分钟后再查
//1查看时间同步状态。启动后,一般需要5-10分钟左右的时候才能与外部时间服务器开始同步时间。可以通过命令查询NTPD服务情况
ntpstat
//2查看网络中的NTP服务器,同时显示客户端和每个服务器的关系
ntpq �Cp
//出现了红框中local,说明本地时钟源配置成功
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。