符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
centos6.8 配置服务器NTP服务
樟树ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联建站的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18982081108(备注:SSL证书合作)期待与您的合作!
先查看是否安装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,说明本地时钟源配置成功