Nginx 1.12.1 編譯安裝與配置

背景:本人博客自2014年上線以來扮超,一直使用阿里云ECS最低配的實例取刃,由于最近阿里云ECS進行了升級遷移,原來的低配實例已經(jīng)不存在了出刷,升級后實例的配置有所提升璧疗,當然價格更高了,為了更好的發(fā)揮服務器性能馁龟,所以就想利用空閑時間對整站進行升級崩侠,包含阿里云ecs更換系統(tǒng)盤MySQL 5.7.19 編譯安裝與配置, Nginx 1.12.1 編譯安裝與配置, PHP 7.1.9 編譯安裝與配置等坷檩。

服務器環(huán)境
CentOS 6.3 64位 全新純凈的系統(tǒng) / 1核1GB / 經(jīng)典網(wǎng)絡 1MB

進入Nginx下載頁面却音,如果你需要下載nginx-1.12.1.tar.gz版本,請點擊此處下載
選擇 Stable 穩(wěn)定版本下載
進入/usr/local/src目錄淌喻,一般我喜歡把下載的文件放在此目錄僧家,根據(jù)自己的喜好設定

[root@iZ2864f6btwZ src]# cd /usr/local/src

使用wget下載Nginx文件,如果wget沒有安裝裸删,yum -y install wget即可安裝

[root@iZ2864f6btwZ src]# wget https://nginx.org/download/nginx-1.12.1.tar.gz

安裝編譯所需的常用組件和依賴包 [ 參考于網(wǎng)絡博客 ]

[root@iZ2864f6btwZ src]# yum -y install gcc gcc-c++ pcre-devel openssl-devel openssl libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed

創(chuàng)建nginx用戶組和用戶八拱,用來運行nginx服務器, -g指定用戶組, -r創(chuàng)建系統(tǒng)用戶肌稻,-M不創(chuàng)建用戶主目錄
[root@iZ2864f6btwZ src]# groupadd nginx
[root@iZ2864f6btwZ src]# useradd -r -g nginx -s /bin/false -M nginx
解壓Nginx清蚀,進入 nginx-1.12.1 目錄
[root@iZ2864f6btwZ src]# tar zxvf nginx-1.12.1.tar.gz
[root@iZ2864f6btwZ src]# cd nginx-1.12.1
安裝pcre用于Rewrite,當前版本8.41爹谭,如果你需要下載其它版本枷邪,請點擊此處
[root@iZ2864f6btwZ nginx-1.12.1]# wget https://jaist.dl.sourceforge.net/project/pcre/pcre/8.41/pcre-8.41.tar.gz
[root@iZ2864f6btwZ nginx-1.12.1]# tar zxvf pcre-8.41.tar.gz
安裝zlib用于Gzip壓縮,當前版本1.2.11诺凡,其它版本請點擊此處
[root@iZ2864f6btwZ nginx-1.12.1]# wget https://jaist.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz
[root@iZ2864f6btwZ nginx-1.12.1]# tar zxvf zlib-1.2.11.tar.gz
創(chuàng)建 Nginx 安裝所需目錄
[root@iZ2864f6btwZ nginx-1.12.1]# mkdir -p /var/tmp/nginx/{client,proxy,fastcgi,uwsgi,scgi}
[root@iZ2864f6btwZ nginx-1.12.1]# mkdir -p /var/run/nginx
生成 Makefile东揣,所有擴展參考于網(wǎng)絡博客,可根據(jù)個人需要安裝相應的擴展
[root@iZ2864f6btwZ nginx-1.12.1]#  ./configure \
 --prefix=/usr/local/nginx \
 --sbin-path=/usr/local/nginx/bin/nginx \
 --conf-path=/usr/local/nginx/conf/nginx.conf \
 --error-log-path=/var/log/nginx/error.log \
 --http-log-path=/var/log/nginx/access.log \
 --pid-path=/var/run/nginx/nginx.pid  \
 --lock-path=/var/lock/nginx.lock \
 --user=nginx \
 --group=nginx \
 --with-http_ssl_module \
 --with-http_flv_module \
 --with-http_realip_module \
 --with-http_addition_module \
 --with-http_xslt_module \
 --with-http_stub_status_module \
 --with-http_sub_module \
 --with-http_random_index_module \
 --with-http_degradation_module \
 --with-http_secure_link_module \
 --with-http_gzip_static_module \
 --with-http_perl_module \
 --with-pcre=pcre-8.41 \
 --with-zlib=zlib-1.2.11 \
 --with-debug \
 --with-file-aio \
 --with-mail \
 --with-mail_ssl_module \
 --http-client-body-temp-path=/var/tmp/nginx/client/ \
 --http-proxy-temp-path=/var/tmp/nginx/proxy/ \
 --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
 --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
 --http-scgi-temp-path=/var/tmp/nginx/scgi \
 --with-stream \
 --with-ld-opt="-Wl,-E"
configure執(zhí)行完成

注意:
pcre 和 zlib 的路徑一定要指定正確腹泌,與 pcre 和 zlib 的解圧路徑一致

--with-pcre=pcre-8.41 \
--with-zlib=zlib-1.2.11 \

sbin嘶卧、conf、pid凉袱、local的路徑要和 創(chuàng)建 Nginx 安裝所需目錄 步驟中創(chuàng)建的目錄一致芥吟!

--http-client-body-temp-path=/var/tmp/nginx/client/ \  
--http-proxy-temp-path=/var/tmp/nginx/proxy/ \  
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \  
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \  
--http-scgi-temp-path=/var/tmp/nginx/scgi \  

每個\--with之間一定不要有空格,只能是換行符专甩,否則復制到命令行執(zhí)行時會報錯钟鸵,建議先使用sublime/editplus等編輯工具處理好格式后再復制到命令行執(zhí)行

編譯并安裝

[root@iZ2864f6btwZ nginx-1.12.1]# make && make install

將nginx添加到環(huán)境變量,新建/etc/profile.d/nginx.sh涤躲,在nginx.sh文件添加export PATH=$PATH:/usr/local/nginx/bin/
[root@iZ2864f6btwZ nginx-1.12.1]# vim /etc/profile.d/nginx.sh
[root@iZ2864f6btwZ nginx-1.12.1]# source /etc/profile.d/nginx.sh
修改/usr/local/nginx目錄權限

[root@iZ2864f6btwZ nginx-1.12.1]# chown nginx.nginx -R /usr/local/nginx/

啟動 Nginx棺耍,如果你不能在任意目錄下使用nginx啟動nginx服務器,請檢查有沒有把/usr/local/nginx/bin/添加到PATH環(huán)境變量中

[root@iZ2864f6btwZ nginx-1.12.1]# nginx

查看啟動狀態(tài)
[root@iZ2864f6btwZ nginx-1.12.1]# ps -ef | grep nginx
root     16259     1  0 15:59 ?        00:00:00 nginx: master process nginx
nginx    16260 16259  0 15:59 ?        00:00:00 nginx: worker process
root     16263  7577  0 15:59 pts/1    00:00:00 grep --color=auto nginx
[root@iZ2864f6btwZ nginx-1.12.1]#
通過瀏覽器中輸入服務器IP地址种樱,如果能看到如下界面說明nginx服務器啟動成功
啟動成功

注意:
在生產環(huán)境中烈掠,我們一般會使用啟動腳本來啟動nginx來自啟動服務器

新建nginx啟動文件

[root@iZ2864f6btwZ conf]# vim /etc/init.d/nginx

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig:  - 85 15
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
#              proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /usr/local/nginx/conf/nginx.conf
# pidfile:    /run/nginx/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.

[ "$NETWORKING" = "no" ] && exit 0

nginx="/usr/local/nginx/bin/nginx"
prog=$(basename $nginx)

NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf "

lockfile=/var/lock/nginx.lock
nginx_run_path="/var/run/nginx/"
nginx_temp_path="/var/tmp/nginx/"

start() {
    if [ ! -d $nginx_run_path ];then
        mkdir -p  $nginx_run_path
        chown -R nginx.nginx $nginx_run_path
    fi

     if [ ! -d $nginx_temp_path ];then
      mkdir -p ${nginx_temp_path}"{client,proxy,fastcgi,uwsgi,scgi}"
      chown -R nginx:nginx $nginx_temp_path
    fi

    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    configtest || return $?
    stop
    start
}

reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}

force_reload() {
    restart
}

configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}

rh_status() {
    status $prog
}

rh_status_q() {
    rh_status >/dev/null 2>&1
}

case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
        ;;
    *)
    echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
    exit 2
esac

注意:
上述腳本來自網(wǎng)上,僅供參考缸托,注意NGINX_CONF_FILE、nginx瘾蛋、lockfile的路徑保持和實際編譯路徑一致

添加執(zhí)行權限俐镐,并加入開機自啟動
[root@iZ2864f6btwZ conf]# chmod +x /etc/init.d/nginx  
[root@iZ2864f6btwZ conf]# chkconfig --add nginx  
[root@iZ2864f6btwZ conf]# chkconfig nginx on
使用 service 啟動nginx
[root@iZ2864f6btwZ conf]# service nginx start
Starting nginx (via systemctl):                            [  OK  ]

注意:
service啟動之前,請先停止nginx ( 如之前有使用nginx命令啟動過服務器 )
[root@iZ2864f6btwZ conf]# nginx -s stop

查看nginx服務器啟動狀態(tài)
[root@iZ2864f6btwZ conf]# ps -ef | grep nginx
root     16686     1  0 16:51 ?        00:00:00 nginx: master process /usr/local/nginx/bin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx    16687 16686  0 16:51 ?        00:00:00 nginx: worker process
root     16690  7577  0 16:52 pts/1    00:00:00 grep --color=auto nginx
[root@iZ2864f6btwZ conf]#
再次打開瀏覽器輸入服務器IP訪問
啟動成功

結尾:
至此哺哼,nginx服務器編譯安裝與配置已經(jīng)全部完成佩抹,后續(xù)關于nginx與php整合的部分將在單獨的文章再介紹,如有毛病取董,歡迎指正棍苹。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市茵汰,隨后出現(xiàn)的幾起案子枢里,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件栏豺,死亡現(xiàn)場離奇詭異彬碱,居然都是意外死亡,警方通過查閱死者的電腦和手機奥洼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門巷疼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來呼股,“玉大人晌坤,你說我怎么就攤上這事〕的” “怎么了瓷患?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵骡尽,是天一觀的道長。 經(jīng)常有香客問我尉尾,道長爆阶,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任沙咏,我火速辦了婚禮辨图,結果婚禮上,老公的妹妹穿的比我還像新娘肢藐。我一直安慰自己故河,他們只是感情好,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布吆豹。 她就那樣靜靜地躺著鱼的,像睡著了一般。 火紅的嫁衣襯著肌膚如雪痘煤。 梳的紋絲不亂的頭發(fā)上凑阶,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天,我揣著相機與錄音衷快,去河邊找鬼宙橱。 笑死,一個胖子當著我的面吹牛蘸拔,可吹牛的內容都是我干的师郑。 我是一名探鬼主播,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼调窍,長吁一口氣:“原來是場噩夢啊……” “哼宝冕!你這毒婦竟也來了?” 一聲冷哼從身側響起邓萨,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤地梨,失蹤者是張志新(化名)和其女友劉穎菊卷,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體湿刽,經(jīng)...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡的烁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了诈闺。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片渴庆。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖雅镊,靈堂內的尸體忽然破棺而出襟雷,到底是詐尸還是另有隱情,我是刑警寧澤仁烹,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布耸弄,位于F島的核電站,受9級特大地震影響卓缰,放射性物質發(fā)生泄漏计呈。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一征唬、第九天 我趴在偏房一處隱蔽的房頂上張望捌显。 院中可真熱鬧,春花似錦总寒、人聲如沸扶歪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽善镰。三九已至,卻和暖如春年枕,著一層夾襖步出監(jiān)牢的瞬間炫欺,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工熏兄, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留竣稽,地道東北人。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓霍弹,卻偏偏與公主長得像,于是被迫代替她去往敵國和親娃弓。 傳聞我的和親對象是個殘疾皇子典格,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內容