centos6.8 配置服务器NTP服务
先查看是否安装NTP
rpm -qa|grep ntp
如果没有安装则安装
yum –y 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
设置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 –p
//出现了红框中local,说明本地时钟源配置成功
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。