實驗環(huán)境介紹:
創(chuàng)新互聯(lián)2013年開創(chuàng)至今,是專業(yè)互聯(lián)網技術服務公司,擁有項目網站建設、做網站網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元措美做網站,已為上家服務,為措美各地企業(yè)和個人服務,聯(lián)系電話:18982081108
[root@nginx ~]# uname -r
2.6.32-573.el6.x86_64
[root@nginx ~]# cat /etc/redhat-release
CentOS release 6.7 (Final)
打包之前需要在測試機上先安裝 nginx 服務
安裝過程如下
[root@nginx ~]# useradd -s /sbin/nologin/ -M nginx
[root@nginx ~]# yum -y install pcre-devel openssl-devel
[root@nginx ~]# tar zxf nginx-1.6.2.tar.gz
[root@nginx ~]# cd nginx-1.6.2
[root@nginx ~]# ./configure \
--user=nginx \
--group=nginx \
--prefix=/application/nginx-1.6.2 \
--with-http_stub_status_module \
--with-http_ssl_module
[root@nginx nginx-1.6.2]# make && make install
[root@nginx nginx-1.6.2]# ln -s /application/nginx-1.6.2/ /application/nginx
fpm 制作開始
通過 yum 安裝依賴包
[root@nginx ~]# yum -y install ruby rubygems ruby-devel
更換 yum 源
[root@nginx ~]# gem sources -a http://mirrors.aliyun.com/rubygems/
[root@nginx ~]# gem sources --remove http://rubygems.org/
[root@nginx ~]# gem sources --list
[root@nginx ~]# gem install fpm -v 1.3.3
-v 指定要安裝的 fpm 版本,也可以不指定。直接執(zhí)行 gem install fpm
寫一個腳本,只需要寫入添加的 nginx 用戶和創(chuàng)建軟連接的命令即可
[root@nginx ~]# vim nginx_fpm.sh
#!/bin/bash
useradd -s /sbin/nologin/ -M nginx
ln -s /application/nginx-1.6.2/ /application/nginx
執(zhí)行打包命令
[root@nginx ~]# fpm -s dir -t rpm -n nginx -v 1.6.2 -d 'pcre-devel,openssl-devel' --post-install /root/nginx_fpm.sh -f /application/nginx-1.6.2/
-s:指定源類型
-t:執(zhí)行目標類型
-n:執(zhí)行包的名字
-v:指定包的版本號
-d:指定依賴于哪些包
--post-install:軟件安裝完要運行的腳本
-f:第二次包時目錄下如果有同名安裝包存在,則覆蓋它
在一臺新機器上測試一下剛才的 rpm 包
使用 yum -y localinstall 命令可以自行解決安裝問題
[root@lvs1 ~]# yum -y localinstall nginx-1.6.2-1.x86_64.rpm
啟動 nginx 服務成功
[root@lvs1 ~]# /application/nginx/sbin/nginx
[root@lvs1 ~]# lsof -i :80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 1842 root 6u IPv4 14884 0t0 TCP *:http (LISTEN)
nginx 1843 nginx 6u IPv4 14884 0t0 TCP *:http (LISTEN)