centos7 时间同步服务器
时间:2016-01-26 07:55 来源:linux.it.net.cn 作者:IT
今天有点麻烦了。 居然服务器的时间不一致导致我的数据同步时 ,少了很多的log日志。
所以嘛。还是先弄下时间的服务器再说吧。
开始:
第一方法: 简单 高效 没烦恼 一条命令解决单台server-time
#ntpdate -u ntp.api.bz
第二方法:时间服务器:
1) #yum install ntp
2)# vi /etc/ntp.conf
注释一行
restrict default ignore
加入一行
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap #服务器的地址
3). # vi /etc/ntp/step-tickers
加入一行(也可以在原有基础上改写)
pool.ntp.org
这样每次ntpd启动时,会自动连接该国际标准时间服务器;
4). # systemctl restart ntpd
5). # ss -an |grep 123
确保该端口以udp方式开放
6)# systemctl enable ntpdate.service (加入开机自启动)
7)# date (检测时间是否靠谱)
2016年 01月 18日 星期一 00:43:55 CST
这样的话就可以解决多台机器的时间同步问题了。
(责任编辑:IT)
今天有点麻烦了。 居然服务器的时间不一致导致我的数据同步时 ,少了很多的log日志。 所以嘛。还是先弄下时间的服务器再说吧。 开始: 第一方法: 简单 高效 没烦恼 一条命令解决单台server-time #ntpdate -u ntp.api.bz 第二方法:时间服务器: 1) #yum install ntp 2)# vi /etc/ntp.conf 注释一行 restrict default ignore 加入一行 restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap #服务器的地址 3). # vi /etc/ntp/step-tickers 加入一行(也可以在原有基础上改写) pool.ntp.org 这样每次ntpd启动时,会自动连接该国际标准时间服务器; 4). # systemctl restart ntpd 5). # ss -an |grep 123 确保该端口以udp方式开放 6)# systemctl enable ntpdate.service (加入开机自启动) 7)# date (检测时间是否靠谱) 2016年 01月 18日 星期一 00:43:55 CST 这样的话就可以解决多台机器的时间同步问题了。 (责任编辑:IT) |