一、前言 很多软件都有时间同步的功能,尤其是Qt在嵌入式设备上的,有时候还有很多是没有UI界面的程序,而硬件上有个时钟,时间久了难免没有电,需要从服务器来同步时间来保证本地的时间是正确的,不然本地记录的一些日志的时间都是不正确的,很多还可能是1970年的。 NTP同步时间是个标准的协议,使用的端口是 ...
分类:
其他好文 时间:
2020-06-07 10:38:39
阅读次数:
74
计划任务 at 可以来做一次性的任务 crontab 同步时间 备份 日志 SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details see man 4 crontabs # Example of job ...
分类:
系统相关 时间:
2020-06-05 00:50:52
阅读次数:
105
1. 把Windows Time服务的启动类型改成Manual(Automatic也行) 2. 以管理员权限运行cmd,输入w32tm /config /syncfromflags:DOMHIER /update进行更新配置 3. 运行w32tm /query /status查看同步状态 ...
实验要求:1,关闭防火墙 systemctl status firewalld查看防火墙状态(active为开启,inactive为关闭) systemctl stop firewalld(关闭防火墙) systemctl disable firewalld(删除firewalld服务,即永久删除f ...
分类:
其他好文 时间:
2020-05-13 19:53:08
阅读次数:
105
Chrony是NTP(Network Time Protocol,网络时间协议,服务器时间同步的一种协议)的另一种实现,与ntpd不同,它可以更快且更准确地同步系统时钟,最大程度的减少时间和频率误差。 在CentOS6中,默认是使用ntpd来同步时间的,但ntpd同步时间并不理想,有可能需要数小时来 ...
分类:
系统相关 时间:
2020-05-11 22:03:23
阅读次数:
127
1环境IPHostnameOSVersionElasticsearchVersion192.168.7.41es-node1Ubuntu18.04.37.6.1192.168.7.42es-node2Ubuntu18.04.37.6.1192.168.7.43es-node3Ubuntu18.04.37.6.1关闭swap,同步时间。2安装步骤2.1安装elasticsearch安装包下载路径:h
分类:
其他好文 时间:
2020-05-09 10:32:59
阅读次数:
75
安装ntpdate yum install ntpdate 同步时间 ntpdate ntp1.aliyun.com 查看时间 date 如果时间不对,一般是时区问题(对的话就把时间同步到硬件hwclock -w) timedatectl 修改时区 ln -sf /usr/share/zoneinf ...
分类:
其他好文 时间:
2020-05-03 10:56:44
阅读次数:
63
1. 104公约概况 使用tcp协议通信,标准tcp端口号是2404。服务端模拟软件可以使用gitbub上一个模拟器(IEC60870-5-104ServerSimulator.exe)。 2. 104公约数据结构 APCI Application Protocol Control Informat ...
archLinux安转(UEFI) 1. 检查是否可上网 ping baidu.com 有数据返回,说明可以上网 2. 连接网络(__可以上网则跳过__) 查看网卡 ip link 启动网卡 ip link set wlan0 [^a] 获取WiFi的名字 iwlist wlan0 [^a] sca ...
分类:
系统相关 时间:
2020-04-24 20:05:54
阅读次数:
114
#!/bin/bash #设置时区并同步时间 ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime if ! crontab -l |grep ntpdate &>/dev/null ; then (echo "* 1 * * * ntpdat ...
分类:
系统相关 时间:
2020-04-22 16:28:30
阅读次数:
70