1、安装ntp服务
yum install ntp ntpdate -y
2、修改ntp 配置文件 路径:/etc/ntp.conf
2.1、注释这几行代码,应为同步国外服务器,时间比较慢
2.2、配置文件中添加下面几行代码
restrict 192.168.10.0 mask 255.255.255.0 nomodify notrap
#控制允许哪些网络查询和同步时间,这里允许192.168.10.0网段上的所有机器可以从这台机器上查询和同步时间
server 127.0.0.1
fudge 127.0.0.1 stratum 10
# 以本机服务作为时钟服务器
3、启动ntp服务
systemctl start ntpd #启动ntpd服务
systemctl start ntpdate
systemctl enable ntpd #将ntpd添加到开机启动项
systemctl enable ntpdate
systemctl is-enabled ntpd #查看是否在开机启动项
systemctl is-enabled ntpdate
systemctl list-unit-files | grep ntp #查看是否在开机启动项
systemctl status ntpd #查看ntpd服务的状态
4、验证
ntpq -p #查看该主机使用的ntp-server情况和同步延时等信息;
timedatectl #查看ntpd服务或chronyd服务是否生效。只有centos7、redhat7、ubuntu14等以上(含)才有该命令;
5、 摄像头设置ntp服务器地址:
xxx.xxx.xxx.xxx:123