ntpdate

NTP服务器的搭建和时间同步

梦想与她 提交于 2020-03-27 11:28:25
一、NTP服务器 1.安装NTP服务 yum install -y ntp 2.修改ntp的配置文件 [root@localhost ~]# grep -Ev "^#|^$" /etc/ntp.conf driftfile /var/lib/ntp/drift pidfile /var/run/ntpd.pid logfile /var/log/ntp.log restrict -4 default kod notrap nomodify restrict -6 default kod notrap nomodify restrict 127.0.0.1 restrict ::1 server ntp.aliyun.com iburst minpoll 4 maxpoll 10 restrict ntp.aliyun.com nomodify notrap nopeer noquery server 127.127.1.0 fudge 127.127.1.0 stratum 8 includefile /etc/ntp/crypto/pw keys /etc/ntp/keys disable monitor 3.重启服务 systemctl start ntpd.service systemctl enable ntpd.service 4.查看状态 [root@localhost

Linux上的Systemctl命令

假如想象 提交于 2020-03-22 05:19:47
LinuxSystemctl是一个系统管理守护进程、工具和库的集合,用于取代System V、service和chkconfig命令,初始进程主要负责控制systemd系统和服务管理器。通过Systemctl –help可以看到该命令主要分为:查询或发送控制命令给systemd服务,管理单元服务的命令,服务文件的相关命令,任务、环境、快照相关命令,systemd服务的配置重载,系统开机关机相关的命令。 1. 列出所有可用单元 # systemctl list-unit-files 2. 列出所有运行中单元 # systemctl list-units 3. 列出所有失败单元 # systemctl –failed 4. 检查某个单元(如 crond.service)是否启用 # systemctl is-enabledcrond.service 5. 列出所有服务 # systemctl list-unit-files –type=service 6. Linux中如何启动、重启、停止、重载服务以及检查服务(如 httpd.service)状态 # systemctl start httpd.service # systemctl restart httpd.service # systemctl stop httpd.service # systemctl reload

linux系统安装ntp网络时间服务

為{幸葍}努か 提交于 2020-03-17 08:20:22
某厂面试归来,发现自己落伍了!>>> 随着时间的推移, 计算机的时钟会倾向于漂移。 网络时间协议 (NTP) 是一种确保您的时钟保持准确的方法。 公司局域网有数台计算机,如果实现时间的同步将有助于日常维护和出错分析。为此使用debian架设一台基于linux的ntp服务器。 如 果可以你的局域网可以访问互联网,那么不必安装一台专门的ntp服务器,只需安装ntp的客户端软件到互联网上的公共ntp服务器自动修正时间即可。如果 不能访问互联网,而要将各个计算机时间的统一,就需要自己架设一台ntp服务器。无论怎样,请首先保证你的时区设置是正确的!(debian下使用 tzconfig设置时区) 一、安装客户端: 1、linux下的客户端安装 对于debian,请使用root权限运行如下命令: apt-get install ntpdate 其他发行版请安装相应的包格式,实在没有就到www.ntp.org下载编译源码。 apt-get方式安装完成后,将创建“/etc/init.d/ntpdate”脚本,并自动将其加入开机运行的服务中。其配置文件为 “/etc/default/ntpdate”,你可以修改如下内容,使系统在启动时自动将系统时间同步cn.pool.ntp.org或pool.ntp.orgntp服务器 NTPSERVERS="cn.pool.ntp.org pool.ntp.org

Docker ntpdate Permition error

雨燕双飞 提交于 2020-03-09 14:58:38
Docker ntpdate Permition error After building a Dockerfile, I run it. I figure out that there is something wrong with local time. So I start to install ntpdate but it doesn't work at all. The clock of docker must be asyncronized with host clock, it can not be changed by itself. The file /etc/localtime is used for setting the system clock and once it is changed, the time in system will be changed immediately. Actually, /etc/localtime is a symlink to /usr/share/zoneinfo/localtime in some Linux/Unix systems. We can can change /etc/lcoaltime into any one of these timezones as following: 1 2 3 4 5

Linux时间同步小知识

▼魔方 西西 提交于 2020-03-03 11:35:46
ntpdate 系统时间、hwclock 硬件时间 1、判断当前时间是否准确 [root@Ecology-APP ~]# date 2020年 03月 03日 星期二 10:13:02 CST 2、检查是否安装ntpdate [root@Ecology-APP ~]# ntpdate -bash: ntpdate: command not found 3、检查网络是否通,比如阿里云的时间服务器,如果不能连接外网就选择内网的时间服务器 [root@Ecology-APP ~]# ping ntp1.aliyun.com PING ntp1.aliyun.com (120.25.115.20) 56(84) bytes of data. 64 bytes from 120.25.115.20: icmp_seq=1 ttl=52 time=14.2 ms 4、安装ntpdate,如果已联网 [root@Ecology-APP ~]# yum -y install ntpdate 已加载插件:fastestmirror 设置安装进程 Determining fastest mirrors * base: mirrors.ustc.edu.cn * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com base | 3.7 kB

ntpdate同步时间失败

让人想犯罪 __ 提交于 2020-03-02 14:24:37
使用ntpdate服务时,无法同步时间 创建两台虚拟机,其中一台作为时钟源 第一次同步时间源的时候,可以成功同步 过段时间或者重启虚拟机再次同步时间发现无法同步时钟源,出现以下报错 [root@localhost ~]# ntpdate 192.168.100.10 2 Mar 08:08:28 ntpdate[6760]: no server suitable for synchronization found 解决方法 关闭iptables服务,重新启动时钟源ntp服务,即可成功同步 [root@c1 ~]# systemctl stop iptables [root@c1 ~]# systemctl disable iptables [root@c1 ~]# ntpdate 192.168.100.10 2 Mar 00:08:47 ntpdate[7108]: step time server 192.168.100.10 offset -28801.598470 sec 来源: 51CTO 作者: wx5d8a23dbc329e 链接: https://blog.51cto.com/14557736/2474860

docker报错: x509: certificate has expired or is not yet valid

不问归期 提交于 2020-03-02 09:52:21
环境:centos7 问题:docker 启动没问题,但是下载 镜像时报错 问题说明:这种错误,一般都是本地系统时间错误导致报错证书过期,所以先查看本地系统时间 最终发现问题是系统时间不同步 ps:当前时间是2019-12-18 解决方式 1.安装ntpdate(已安装可以直接跳过此) [root@localhost ~]# yum install -y ntpdate ntp 2.同步时间 [root@localhost ~]# ntpdate cn.pool.ntp.org 3.查看时间 [root@localhost ~]# date "+%Y-%m-%d" 然后再次拉取镜像,无报错 来源: https://www.cnblogs.com/mengY/p/12060437.html

ubuntu和centos的时间更新操作

时光总嘲笑我的痴心妄想 提交于 2020-03-01 14:56:41
在Ubuntu Server上,设置NTP时间同步非常简单,就如下几步: 第一,可以先进行手动更新一次时间(可选): sudo ntpdate ntp.ubuntu.com 第二,创建一个定时执行的文件: sudo vim /etc/cron.daily/ntpdate 然后在其中添加一行:ntpdate ntp.ubuntu.com,保存退出。 第三,修改这个定时执行文件的权限,使其变成可执行文件: sudo chmod 755 /etc/cron.daily/ntpdate ========================================== 下面解析一下,第一句是把当前时区调整为上海就是+8区,想改其他时区也可以去看看/usr/share/zoneinfo目录; 然后第二句是利用ntpdate同步标准时间. 没有安装ntpdate的可以yum一下: yum install -y ntpdate 加入定时计划任务,每隔10分钟同步一下时钟 crontab -e 0-59/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org | logger -t NTP 这样,我们就可以来解决在CentOS系统中时间不准确的问题了。 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

CentOS系统时间与网络同步

半世苍凉 提交于 2020-03-01 08:40:55
新装的CentOS系统服务器可能设置了错误的,需要调整时区并调整时间.如下是CentOS系统使用NTP来从一个时间服务器同步: 第一步: 把当前时区调整为上海就是+8区,想改其他时区也可以去看看/usr/share/zoneinfo目录; cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 第二步:利用ntpdate同步标准时间 ntpdate us.pool.ntp.org 注:没有安装ntpdate的可以yum一下: yum install -y ntpdate 来源: oschina 链接: https://my.oschina.net/u/877712/blog/205778

ubuntu设置时区,网上同步时间

此生再无相见时 提交于 2020-03-01 08:31:45
Linux默认情况下使用UTC格式作为标准时间格式,如果在Linux下运行程序,且在程 序中指定了与系统不一样的时区的时候,可能会造成时间错误。如果是Ubuntu的桌面版,则可以直接在图形模式下修改时区信息,但如果是在Server版 呢,则需要通过tzconfig来修改时区信息了。使用方式(如将时区设置成Asia/Chongqing): sudo tzconfig,如果命令不存在请使用 dpkg-reconfigure tzdata 然后按照提示选择 Asia对应的序号,选完后会显示一堆新的提示—输入城市名,如Shanghai或Chongqing,最后再用 sudo date -s “” 来修改本地时间。 按照提示进行选择时区,然后: sudo cp /usr/share/zoneinfo/Asia/ShangHai /etc/localtime 上面的命令是防止系统重启后时区改变。 网上同步时间 1. 安装ntpdate工具 # sudo apt-get install ntpdate 2. 设置系统时间与网络时间同步 # ntpdate cn.pool.ntp.org 3. 将系统时间写入硬件时间 # hwclock –systohc cn.pool.ntp.org是位于中国的公共NTP服务器,用来同步你的时间(如果你的时间与服务器的时间截不同的话,可能无法同步时间哟