为Centos7制作ntp离线安装包

前言

由于我司产品的特殊性,每次都需要针对客户的离线服务器进行应用部署,但是使用二进制文件部署的话后期的升级与维护会很麻烦,所以我司选择了使用rpm包进行离线安装部署

制作yum安装包

找一台和现场一模一样版本的Centos机器,最好是最小安装
找一台和现场一模一样版本的Centos机器,最好是最小安装
找一台和现场一模一样版本的Centos机器,最好是最小安装

这里最好是找一台最小安装的Centos,否则安装后会出现意想不到的BUG

 yum install yum-utils -y # 下载安装工具

接下来我们使用ntp这个包来进行讲解

使用 yumdownloader 进行下载

这种方式我不推荐,只会下载你需要的包,但是不会下载你需要包的依赖,这种方式会导致你安装的包不完整,会出现一些奇奇怪怪的BUG。

yumdownloader --resolve --destdir ./ntp  ntp ntpdate

(1/2): ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm                                                                                                                                                            | 549 kB  00:00:02     
(2/2): ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm

这样下载下来的包只会有两个,你安装的时候就会缺少一个依赖包,不推荐

使用 downloadonly 进行下载

推荐使用这个
使用这个的前提就是你从来没有用这台机器安装过这个组件,这样下载下来的包才是最全的。
这个东西就会根据你当前的环境下载所需要的包,还有所需包的缺少依赖(所以最好使用最小安装的服务器)

这玩意的缺点也很明显

  • 需要从未安装过这个组件(所以最好使用最小安装的服务器),小技巧你可以使用Docker直接启动一个Centos
  • 只会下载本机所需的依赖包,如果曾经安装过这个组件了,下载的时候就没有包了
  • 中标麒麟与Centos7下载的包不通用(无法解决)
yum install --downloadonly ntp ntpdate --downloaddir=./ntp

(1/3): ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm                                                                                                                                                            | 549 kB  00:00:02     
(2/3): ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm
(3/3): autogen-libopts-5.18-5.el7.x86_64.rpm
使用 repotrack 进行下载

这玩意是一把双刃剑,不推荐
不推荐的原因是一旦你不懂,就会玩瞎服务器,导致整个服务器需要重装

这玩意是三种中最牛逼的,他会将所有的组件的所有依赖全部下载下来

repotrack --download_path=./ntp ntp ntpdate

慎用,慎用,这玩意会将所依赖的gcc包也下下来,你一旦用这个提供的包去新服务器上装就很可能搞崩服务器,具体表现就是运行一段时候后服务器卡出翔来,然后CPU起飞,命令执行卡的要死,基本服务器就废了

制作安装包

压缩安装包

记得这玩意在linux下进行打包压缩,除非你很熟悉你在干嘛,不然可能会出现你想不到的问题。

先将刚刚下载的包压缩为.tar.gz

tar -czvf ntp.tar.gz ./ntp #压缩
tar -zxvf docker.tar.gz #解压
构建配置文件
vi install.sh 

# 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

# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default 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 ::1

# Hosts on local network are less restricted.
#restrict 192.168.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

server ${NTP_SERVER} iburst

#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

# 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
# Disable the monitoring facility to prevent amplification attacks using ntpdc
# monlist command when default restrict does not include the noquery flag. See
# CVE-2013-5211 for more details.
# Note: Monitoring will not be disabled with the limited restriction flag.
disable monitor

编写安装脚本
vi ntp.conf 

#! /bin/bash

conf_path="/etc/ntp.conf"

type=$1
server=$2

install() {
    cat /proc/version | grep NeoKylin >/dev/null 2>&1
    if [ $? -eq 0 ]; then
        tar xzvf ntp-ns7.tar.gz
        rpm -ivh ./ntp-ns7/*.rpm --force --nodeps
    else
        tar xzvf ntp.tar.gz
        rpm -ivh ./ntp/*.rpm --force --nodeps
    fi
}

conf_server() {
    echo "$(sed "s/\${NTP_SERVER}/127.127.1.0/" ./ntp.conf)" >${conf_path}

    systemctl start ntpd
    systemctl enable ntpd
}

conf_client() {
    echo "$(sed "s/\${NTP_SERVER}/${server}/" ./ntp.conf)" >${conf_path}

    ntpdate -u ${server} # 首先同步时间

    systemctl start ntpd
    systemctl enable ntpd
}

main() {
    ntpd --help >/dev/null 2>&1
    if [ $? -eq 0 ]; then
        echo "ntpd 已经安装无须再次安装"
    else
        install
        if [ ${type} == "server" ]; then
            conf_server
        elif [ ${type} == "client" ]; then
            if [ -z ${server} ]; then
                echo '请输入NTP服务地址,如果没有NTP服务请执行如下命令进行安装!'
                echo 'sh ./install.sh server'
                exit 1
            fi
            conf_client
        fi
    fi
}

main
安装NtpServer与NtpClient

安装包制作完成后应该如下图所示拥有这些东西


image.png
sh ./install.sh server # 安装ntp服务端
sh ./open-firewall.sh open # 开放防火墙端口
sh ./install.sh client 192.168.1.1 # 安装ntp客户端

yum remove -y ntp ntpdate # 卸载
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,222评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,455评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,720评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,568评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,696评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,879评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,028评论 3 409
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,773评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,220评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,550评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,697评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,360评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,002评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,782评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,010评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,433评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,587评论 2 350

推荐阅读更多精彩内容