标签:usr 时间 安装 etc -- kconfig oop rest art
------------------------------------服务器----------------------------------------------------------
1. 检查ntp是否安装
rpm -qa|grep ntp
2. 修改ntp配置 /etc/ntp.conf
修改如下内容
//添加
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
//注释所有如下格式内容(注释掉互联网服务器)
server XXX iburst
//添加
server 127.127.1.0
fudge 127.127.1.0 stratum 10
3. 修改/etc/sysconfig/ntpd文件:让硬件时间和系统时间一起同步
SYSC_HWCLOCK=yes
4. 重启ntpd服务
service ntp restart
5. 设置开机启动
chkconfig ntpd on
---------------------------------其他主机---------------------------------------------------------------
配置定时任务每十分钟同步一次 crontab -e
*/10 * * * * /usr/sbin/ntpdate hadoop102
标签:usr 时间 安装 etc -- kconfig oop rest art
原文地址:https://www.cnblogs.com/abuduri/p/13189043.html