【Linux】NTP服务器配置、时间修改

复制代码
 查看当前系统时间date

修改当前系统时间date -s "2018-2-22 19:10:30"

查看硬件时间hwclock --show

修改硬件时间hwclock --set --date "2018-2-22 19:10:30"

同步系统时间和硬件时间hwclock --hctosys

保存时钟clock --w

1.设置NTP Server服务

检查系统是否安装ntp服务:
rpm -qa | grep ntp

编辑配置文件:
vim /etc/ntp.conf
1)注释
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst

2)添加以下配置       
server 127.127.1.0
fudge 127.127.1.0 stratum 10
  

3)启动ntpd服务           
#开启ntp默认端口123(vim /etc/sysconfig/iptables),添加下面配置
-A INPUT -s 10.44.99.84/32 -p udp -m udp --dport 123 -j ACCEPT
 
#启动ntpd服务
systemctl start ntpd
 
#设置开机自启动
chkconfig ntpd on
 
#查看NTP是否正常运行
netstat -tlunp |  grep ntp
 
#查看ntp服务器有无和上层ntp连通
ntpstat
 
#查看ntp服务器与上层ntp的状态
ntpq --p
相关推荐
zzzzzz31021 小时前
9K Star 炸裂开源!这个 C 语言写的代码知识图谱,把 Linux 内核索引压缩到了 3 分钟
linux·服务器·sql
XIAOHEZIcode1 天前
Linux系统鼠标偏移常见原因以及修复方案
linux·运维·游戏
用户0328472220702 天前
如何搭建本地yum源(上)
运维
A小辣椒3 天前
TShark:Wireshark CLI 功能
linux
A小辣椒3 天前
TShark:基础知识
linux
AlfredZhao3 天前
OCI 明明分配了 200G 系统盘,为什么 df 只看到 30G?
linux·oci
AlfredZhao4 天前
vi 删除指定范围的行,不用再反复按 dd
linux·vi
用户9718356334664 天前
银河麒麟 KY10 申威(SW64) 安装 nginx-1.16.1-2.p01.ky10.sw_64.rpm 详细步骤
linux
猪脚踏浪4 天前
linux 拷贝文件或目录到指定的位置
linux
大树885 天前
金刚石散热越强,管路越先见顶
大数据·运维·服务器·人工智能·ai