部署ntp服务器笔记与时区的介绍与修改

准备工作:

server ip:10.1.1.119

client  ip :10.1.1.56

关闭selinux:

vi /etc/selinux/config

SELINUX=disabled

关闭iptables:

service iptables stop

chkconfig iptables off

一.安装NTP软件包:

yum -y install ntp /*yum安装NTP服务*/

chkconfig --add ntpd /*添加NTP*/

chkconfig ntpd on /*开机自启动NTP*/
二.修改NTP配置文件:
 vim /etc/ntp.conf
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

driftfile /var/lib/ntp/drift
#设置默认策略为拒绝所有访问方式的请求
restrict default ignore
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery

# Permit all access over the loopback interface.  This could(
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 127.0.0.1
restrict -6 ::1

# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
#允许局域网内机器同步时间(这里有待test能不能测试多个网段同步时间)
restrict 10.1.1.0 mask 255.255.255.0 nomodify notrap

# 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
#设置同步服务器加prefer表示优先
server 0.cn.pool.ntp.org prefer
server 1.s2m.time.edu.cn
server 2.1.cn.pool.ntp.org

#broadcast 192.168.1.255 autokey # broadcast server
#broadcastclient   # broadcast client
#broadcast 224.0.1.1 autokey  # multicast server
#multicastclient 224.0.1.1  # multicast client
#manycastserver 239.255.254.254  # manycast server
#manycastclient 239.255.254.254 autokey # manycast client
#允许与上层服务器同步时间
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 1.s2m.time.edu.cn nomodify notrap noquery
restrict 2.1.cn.pool.ntp.org nomodify notrap noquery

# Undisciplined Local Clock. This is a fake driver intended for backup
# # and when no outside source of synchronized time is available.
#外界同步源无法联系时,使用本地时间为同步服务
 server  127.127.1.0     # local clock
 fudge   127.127.1.0 stratum 0

# Enable public key cryptography.
#crypto

includefile /etc/ntp/crypto/pw

# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography.
keys /etc/ntp/keys

# Specify the key identifiers which are trusted.
#trustedkey 4 8 42

# Specify the key identifier to use with the ntpdc utility.
#requestkey 8

# Specify the key identifier to use with the ntpq utility.
#controlkey 8

# Enable writing of statistics records.
#statistics clockstats cryptostats loopstats peerstats
注意:这里要注意机器的所在时区
/usr/share/zoneinfo/Asia/ #下保存着系统各个时区信息
/etc/localtime 保存当前系统时区及时间信息

修改时区前显示:
[[email protected] ~]# date
Mon Jul 27 21:41:14 PDT 2015
示例修改时区
[[email protected] ~]# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
cp: overwrite `/etc/localtime‘? y
修改时区以后显示:
[[email protected] ~]# date
Tue Jul 28 12:43:00 CST 2015

PDT 是Pacific Daylight Time的简称,意思是太平洋夏令时
UTC 世界协调时间UTC
格林威治标准时间GMT
CST可以同时表示美国,澳大利亚,中国,古巴四个国家的标准时间
三.与上层服务器同步时间:
[[email protected] ~]# ntpdate cn.pool.ntp.org
启动NTP服务
[[email protected] ~]# service ntpd start
正在启动 ntpd:                                            [确定]
[[email protected] ~]# date
2015年 07月 28日 星期二 12:19:55 CST
五.在客户机测试时间同步:
[[email protected] ~]# ntpdate 10.1.1.119
28 Jul 12:43:40 ntpdate[1551]: adjust time server 10.1.1.119 offset 0.057411 sec

问题1:

[[email protected] ~]# ntpdate 0.centos.pool.ntp.org
 8 Nov 11:12:34 ntpdate[4606]: the NTP socket is in use, exiting

原因:该机已经运行NTP服务。

解决:

[[email protected] ~]# service ntpd stop
关闭 ntpd:[确定]
[[email protected] ~]# ntpdate 0.centos.pool.ntp.org
 8 Nov 11:13:09 ntpdate[4618]: adjust time server 202.112.29.82 offset -0.037618 sec

[[email protected] ~]# service ntpd start
正在启动 ntpd:[确定]

时间: 2024-11-02 23:36:39

部署ntp服务器笔记与时区的介绍与修改的相关文章

部署NTP服务器进行时间同步

一.环境准备   xuegod63.cn                 服务端        xuegod64.cn                 客户端 二.服务端配置: 1.    安装ntp 服务 [[email protected] ~]# yum install  -y ntp 2.    开启ntpd服务并设置开机启动 [[email protected] ~]# service ntpd  start 正在启动 ntpd:                            

ntp服务器搭建与修改时区

NTP是最长用的也是最基本的服务了,很多加密应用都依赖此服务,比如:openvpn.puppet.saltstack等都需要首先同步好时间,所以把搭建NTPserver总结下,方便以后自己查询. 首先下载ntp server源码包:ntp-4.2.6p5.tar,如附件. 解压,进入ntp-4.2.6p5目录开始安装,命令如下:./configure --prefix=/usr/local/ntp --enable-all-clocks --enable-parse-clocksmake &&am

vcsa更改时区及搭建ntp服务器

1.更改vcsa时区 (1)运行tzselect命令进行时区的选择->4asia->9china->1beijing->1yes (2)将TZ='Asia/Beijing';export TZ 加入用户目录中的.profile文件 (3)cp/usr/share/zoneinfo/Asia/Beijing /etc/localtime 2.搭建ntpserver (1)将/etc/ntp.conf改为如下内容 tinkerpanic 0server216.229.0.179rest

【笔记】第一次将网站部署到服务器上

前几天和两个朋友一起租了个国外的服务器,自己手头有个域名,打算寒假把flask学了做个网站玩一玩,不过还没开工,下午学了下flask弄了个helloworld,所以迫不及待的想先试一下把它部署到服务器上去. 使用的架构是uwgsi+nginx+flask. nginx是个什么东西呢,我们购买的服务器有一个ip地址,我们3个人有个人的域名需要解析到这个地址,互联网上默认的请求都是通过80端口,然后我们各自的web应用在服务器上需要有自己的端口,那么nginx就把请求转移到对应的服务器端口上去,比如

ntp服务器简单部署

本文大纲一.简介二.环境说明及配置三.测试四.常见问题解决###############一.简介        NTP 服务器[Network Time Protocol(NTP)]是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精 准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议攻击.1.特性        NTP提供准确时间,首先要有准确的时间来源,这一时间应该是国际标准

局域网部署ntp时间服务器

搭建ntp时间服务器 时间服务器配置 须切换到root用户,再进行操作 检查ntp是否安装 [[email protected] ~]# rpm -qa | grep ntp 如果没有安装,须安装 [[email protected] ~]# yum -y install ntp ntpdate 修改ntp配置文件 [[email protected] ~]# vim /etc/ntp.conf 修改内容如下 #授权172.16.1.0-172.16.1.255网段上的所有机器可以从这台机器上查

上课笔记_Ajax框架,DWR介绍,应用,例子

使用Ajax框架 1. 简化JavaScript的开发难度 2. 解决浏览器的兼容性问题 3. 简化开发流程 常用Ajax框架 Prototype 一个纯粹的JavaScript函数库,对Ajax提供良好支持 jQuery 1.非常优秀的JavaScript库,对Ajax提供了良好的支持 2.与Prototype设计思想不同的是在使用jQuery之后,开发者操作的不再是DOM对象而是jQuery对象 DWR 1.        非常专业的Java Ajax框架 2.        通过DWR框架

centos 6.5 部署openvpn服务器

centos 6.5 部署openvpn服务器一:协议原理OpenVpn的技术核心是虚拟网卡,其次是SSL协议实现,这里重点对虚拟网卡及其在OpenVpn的中的工作机理进行介绍. 虚拟网卡是使用网络底层编程技术实现的一个驱动软件, 安装后在主机上多出现一个网卡,可以像其它网卡一样进行配置.服务程序可以在应用层打开虚拟网卡,如果应用软件(如IE)向虚拟网卡发送数据,则服务程序可以读取到该数据,如果服务程序写合适的数据到虚拟网卡,应用软件也可以接收得到.虚拟网卡在很多的操作系统下都有相应的实现,这也

Linux自动同步网络时间,并创建本地Ntp服务器。

NTP (Network Time Protocol)作用:将网络中的各个主机的时间进行同步,局域网中的误差<0.1ms架构:C/S实验环境:两台有网络的Centos,其中134为服务端,135为客户端.134同步网络时间,其他服务器同步134时间.1.查看134的系统信息.时间和时区cat /etc/redhat-release datetimedatectl | grep "Time zone"此时可以看到134时区为上海.时间和网络时间不同步2.查看135的系统信息.时间和