linux时间同步

Linux系统时间同步方法

走远了吗. 提交于 2019-12-01 09:51:14
在Windwos中,系统时间的设置很简单,界面操作,通俗易懂,而且设置后,重启,关机都没关系。系统时间会自动保存在BIOS时钟里面,启动计算机的时候,系统会自动在BIOS里面取硬件时间,以保证时间的不间断。但在Linux下,默认情况下,系统时间和硬件时间并不会自动同步。在Linux运行过程中,系统时间和硬件时间以异步的方式运行,互不干扰。硬件时间的运行,是靠BIOS电池来维持,而系统时间,是用CPU Tick来维持的。在系统开机的时候,会自动从BIOS中取得硬件时间,设置为系统时间。 1. Linux系统时间的设置 在Linux中设置系统时间,可以用date命令: 1 //查看时间 2 [root@node1 ~]# date 3 Tue Feb 25 20:15:18 CST 2014 4 //修改时间 5 [root@node1 ~]# date -s "20140225 20:16:00" #yyyymmdd hh:mm:ss 6 Tue Feb 25 20:16:00 CST 2014 7 //date 有多种时间格式可接受,查看date --help 2. Linux硬件时间的设置 硬件时间的设置,可以用hwclock或者clock命令。两者基本相同,只用一个就行,只不过clock命令除了支持x86硬件体系外,还支持Alpha硬件体系。 1 /

【Hadoop】部署NTP时间同步服务器

拈花ヽ惹草 提交于 2019-12-01 08:57:10
1. 查看机器的Linux版本 查看集群内所有服务器的linux版本,确保相同,不要跨大版本。 [root@bigdata111 ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) 2.设置时区 集群内所有机器,设置一下时区; [root@bigdata111 ~]# timedatectl set-timezone Asia/Shanghai 3.查看是否安装NTP服务 集群内所有机器,查看是否安装ntp服务; [root@bigdata111 ~]# rpm -qa | grep ntp 4.安装NTP服务 集群内所有机器,如果没有安装ntp服务,则执行以下命令安装; [root@bigdata111 ~]# yum install ntp ntpdate -y 5.查看NTP服务状态 集群内所有机器,执行查看ntp服务状态命令,确定处于服务停止状态; [root@bigdata111 ~]# systemctl status ntpd ● ntpd.service - Network Time Service Loaded: loaded (/usr/lib/systemd/system/ntpd.service; disabled; vendor preset: disabled) Active:

ntp时间服务器

浪子不回头ぞ 提交于 2019-12-01 04:59:37
目录 ntp时间服务器 ntp简介 环境准备 主机规划 服务端安装部署 客户端部署 扩展一:系统时间与硬件时间同步 扩展二:不同机器之间的时间同步 方法一:使用ntpdate比较简单,格式如下 方法二:使用ntp服务进行同步 ntp时间服务器 ntp简介 NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把 计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1- 50ms。 NTP服务器就是利用NTP协议提供时间同步服务的。 环境准备 [root@ntpserver ~]# cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) 主机规划 NTP服务端:ntpserver IP:10.0.0.61 NTP客户端:ntpclient IP:10.0.0.7 服务端安装部署 安装ntp和ntpdate yum install ntp ntpdate -y 启动ntp systemctl start ntpd.service systemctl enable ntpd.service 查看是否成功 netstat -lntup|grep ntpd 配置ntp配置文件 [root@ntpserver

linux 内网时间同步配置

别来无恙 提交于 2019-11-27 22:17:12
在工作中,内网环境机器的时间会有所差异,在某些测试环境下需要一毫秒都不允许出现误差,但又不想同步外网时间,那我们可以选择一台机器作为时间服务器来供其他机器进行时间同步,例如每隔1分钟同步一次时间。 一、环境 系统:Centos 6.5 ntp_client IP:192.168.0.117 ntp_server IP:192.168.0.124 二、安装ntp服务 root@fenfa ~]# yum install ntp -y [root@fenfa ~]# chkconfig --add ntpd [root@fenfa ~]# chkconfig ntpd on 三、配置/etc/ntp.conf文件: server: [root@fenfa ~]# vim /etc/ntp.conf 1 # For more information about this file, see the man pages 2 # ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5). 3 4 driftfile /var/lib/ntp/drift 5 6 # Permit time synchronization with our time source, but do not 7 #

linux中设置ntp时间同步

删除回忆录丶 提交于 2019-11-27 19:48:01
NTP全称为Network Time Protocol,即网络时间协议。是用来使计算机时间同步的一种协议。它可以使计算机对服务器或时钟源做同步,可以提供高精度的时间校正(LAN 上与标准时间小于1毫秒,WAN上几十毫秒),而且可以由加密确认的方式防止恶意的协议***。 实验环境 两台虚拟机 NTP时间服务器 192.168.43.57 主机 192.168.43.29 服务端 安装ntp yum install -y ntp 编辑配置文件 vim /etc/ntp.conf 将这行给注释 #restrict default nomodify notrap nopeer noquery 开启ntp服务: systemctl start ntpd 客户端 安装ntp服务: yum -y install ntp 修改配置文件,添加上层时间服务器 开启ntp服务:service ntpd start 同步时间: ntpdate 192.168.43.57 来源: https://blog.51cto.com/14375809/2430587

linux服务器时间同步

回眸只為那壹抹淺笑 提交于 2019-11-26 13:35:18
如果时间不同步,经常带来业务不正常。如果公司规模小,可以使用联网手动同步,如果服务器多, 可以在公司内部搭建 ntp server。还有一种可能是公司服务器不出外网,比如内部数据库服务器。 可以在内网搭建两台时间服务器,因为一台可能 down 掉,搭建两台可以做到冗余的目的(50 台-100 台以上在用)。 手动同步方法: /sbin/ntpdate time.nist.gov //必须要联网 /usr/sbin/ntpdate time.nist.gov //6.4 在/usr/sbin 下 自动同步方法(每五分钟同步一次): e ch o '#time sync by oldboy at 2010-2-1' >>/var/spool/cron/root e ch o '*/5 * * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1' >>/var/spool/cron/root 来源: https://www.cnblogs.com/fanweisheng/p/11322225.html

linux设置ntp时间同步

£可爱£侵袭症+ 提交于 2019-11-26 10:56:32
NTP时钟同步方式说明 NTP在linux下有两种时钟同步方式,分别为直接同步和平滑同步: 直接同步 使用ntpdate命令进行同步,直接进行时间变更。如果服务器上存在一个12点运行的任务,当前服务器时间是13点,但标准时间时11点,使用此命令可能会造成任务重复执行。因此使用ntpdate同步可能会引发风险,因此该命令也多用于配置时钟同步服务时第一次同步时间时使用。 平滑同步 使用ntpd进行时钟同步,可以保证一个时间不经历两次,它每次同步时间的偏移量不会太陡,是慢慢来的,这正因为这样,ntpd平滑同步可能耗费的时间比较长。 1、安装ntp yum install ntp 2、设置ntp服务开机启动 systemctl restart ntp.service 3、设置服务器 3.1. vi /etc/ntp.conf,内容如下: driftfile /var/lib/ntp/ntp.drift #草稿文件 # 允许内网其他机器同步时间 restrict 192.168.137.0(替换成自己的ip) mask 255.255.255.0 nomodify notrap # Use public servers from the pool.ntp.org project. # 中国这边最活跃的时间服务器 : [http://www.pool.ntp.org/zone/cn](http

linux服务之NTP及chrony时间同步

自作多情 提交于 2019-11-26 08:40:40
NTP(Network Time Protocol,网络时间协议)是由RFC 1305定义的时间同步协议,用来在分布式时间服务器和客户端之间进行时间同步。NTP基于UDP报文进行传输,使用的UDP端口号为123。 使用NTP的目的是对网络内所有具有时钟的设备进行时钟同步,使网络内所有设备的时钟保持一致,从而使设备能够提供基于统一时间的多种应用。 对于运行NTP的本地系统,既可以接受来自其他时钟源的同步,又可以作为时钟源同步其他的时钟,并且可以和其他设备互相同步。 项目:NTP 时间服务器 centos两台以上 @1 192.168.99.101 @2 192.168.99.102 @1: yum –y install ntp 同步本机时间: date 2019年 02月 28日 星期五 11:28:02 CST date -s 23:41 date 2019年 02月 28日 星期五 23:41:16 CST ntpdate time.windows.com 28 Feb 11:29:49 ntpdate[9849]: step time server 52.173.193.166 offset -43916.758152 sec date 2019年 02月 28日 星期五 11:30:30 CST vim /etc/ntp.conf restrict 192.168.99.0

Linux 硬件软件时间同步

╄→гoц情女王★ 提交于 2019-11-26 04:21:57
同步BIOS时钟,强制把系统时间写入CMOS clock --show 查看硬件时间clock -w 强制把系统时间写入CMOSclock --show 查看硬件时间reboot 重起机器 重新启动系统,硬件时间会读取系统时间,实现同步;但是在不重新启动的时候,需要用hwclock或clock命令实现同步。 硬件时钟与系统时钟同步:hwclock --hctosys (hc代表硬件时间,sys代表系统时间)或者 clock --hctosys 系统时钟和硬件时钟同步:hwclock --systohc或者 clock --systohc 让linux自动从time.windows.com自动同步时间 vi /etc/crontab 加上一句自动同步时间: 00 0 1 * * ntpdate -s time.windows.com --每天凌晨1点 * */1 * * * ntpdate -s time.windows.com --每一个小时 * */1 * * * ntpdate -s cn.pool.ntp.org 转载自: https://www.cnblogs.com/qiyebao/p/4424550.html 来源: https://www.cnblogs.com/xibuhaohao/p/11315983.html

阿里云时间同步服务器【ntp服务器】--ntp地址收集

主宰稳场 提交于 2019-11-26 01:08:24
前言-- 今天一台centos 6服务器时间落后了差不多一分钟。 就去网上各种百度,各种谷歌搜索了很多的ntp server,对比发现外国的ntp时间差太大,国家授时中心的服务器IP地址经常失效。 最后发现阿里云的ntp就在中国,同步成功非常高。随手整理了以下时间服务器的ip文档,提供各位看官参考。 ntp收集时间:2018年3月08日 使用范围:unlix类操作系统、linux类操作系统、windows类操作系统 {如有错漏,烦劳指出,谢谢!} 阿里云公共NTP服务器-- Unix/linux类: ntp.aliyun.com ntp1.aliyun.com ntp2.aliyun.com ntp3.aliyun.com ntp4.aliyun.com ntp5.aliyun.com ntp6.aliyun.com ntp7.aliyun.com windows类: time.pool.aliyun.com ntp时间提供商公共NTP服务器-- windows/unix/linux类--(通用) pool.ntp.org 相关服务器时间设置-- 1.linux设置时间同步 2.windows设置时间同步 1.linux设置同步 1.1 ntpdate命令同步 ntpdate ntp1.aliyun.com (没有命令,请 yum -y ×××tall ntpdate安装)