centos編譯安裝nginx

源碼下載

安裝wget并下載nginx源碼包上真, 去 http://nginx.org/download/ 可以找到歷史版本的包

[root@localhost ~]# yum install -y wget && wget http://nginx.org/download/nginx-1.17.9.tar.gz

新增用戶

groupadd www
useradd -g www www

安裝依賴環(huán)境

# pcre:rewrite模塊依賴赏壹,zlib:gzip模塊需要
[root@localhost ~]# yum install -y gcc pcre pcre-devel zlib zlib-devel 

部分編譯參數(shù)說明

參數(shù) 描述
--prefix 定義nginx安裝路徑
--sbin-path 定義nginx可執(zhí)行文件路徑
--modules-path nginx模塊路徑
--conf-path nginx配置文件路徑
--error-log-path翅睛、--http-log-path 錯誤和訪問日志路徑
--with-openssl 定義編譯使用的openssl睹酌,默認(rèn)為系統(tǒng)自帶openssl
--with-http_ssl_module ssl模塊

開始編譯

[root@localhost ~]# ./configure --prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib64/nginx/modules \
--conf-path=/usr/local/nginx/nginx.conf \
--error-log-path=/usr/local/nginx/error.log \
--http-log-path=/usr/local/nginx/access.log \
--pid-path=/usr/local/nginx/nginx.pid \
--lock-path=/usr/local/nginx/nginx.lock \
--http-client-body-temp-path=/usr/local/nginx/client_temp \
--http-proxy-temp-path=/usr/local/nginx/proxy_temp \
--http-fastcgi-temp-path=/usr/local/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/usr/local/nginx/uwsgi_temp \
--http-scgi-temp-path=/usr/local/nginx/scgi_temp \
--user=www \
--group=www \
--with-compat \
--with-file-aio \
--with-threads \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_secure_link_module \
--with-http_slice_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_v2_module \
--with-mail \
--with-mail_ssl_module \
--with-stream \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module
image

上面的編譯是使用了系統(tǒng)默認(rèn)的openssl,如果想使用更高版本的openssl進(jìn)行編譯的話采盒「爰玻可以加上--with-openssl=openssl安裝路徑來自定義。高版本的openssl安裝可以參考 這篇文章 .

--with-openssl 參數(shù)雖然可以指定 OpenSSL 路徑测蘑,但只支持 OpenSSL 的源代碼灌危,不支持已編譯好的 OpenSSL。每回更新 nginx 都要重新編譯 OpenSSL 很麻煩 碳胳。以下是解決方案

打開nginx源碼解壓目錄下的auto/lib/openssl/conf,找到所有帶.openssl的行

CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"

改成下面的樣子勇蝙,去掉.openssl/

CORE_INCS="$CORE_INCS $OPENSSL/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libcrypto.a"

進(jìn)行編譯

[root@localhost ~]# ./configure --prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib64/nginx/modules \
--conf-path=/usr/local/nginx/nginx.conf \
--error-log-path=/usr/local/nginx/error.log \
--http-log-path=/usr/local/nginx/access.log \
--pid-path=/usr/local/nginx/nginx.pid \
--lock-path=/usr/local/nginx/nginx.lock \
--http-client-body-temp-path=/usr/local/nginx/client_temp \
--http-proxy-temp-path=/usr/local/nginx/proxy_temp \
--http-fastcgi-temp-path=/usr/local/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/usr/local/nginx/uwsgi_temp \
--http-scgi-temp-path=/usr/local/nginx/scgi_temp \
--user=www \
--group=www \
--with-compat \
--with-file-aio \
--with-threads \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_secure_link_module \
--with-http_slice_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_v2_module \
--with-mail \
--with-mail_ssl_module \
--with-stream \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-openssl=/usr/local/openssl \
--with-stream_ssl_preread_module
image

安裝

[root@localhost ~]# make && make install

安裝完成后,檢查詳細(xì)信息

# /usr/sbin/nginx是編譯時--sbin-path定義的
[root@localhost ~]# /usr/sbin/nginx -V
1586415658983.png

總結(jié)

以上是nginx編譯安裝全過程挨约。編譯安裝相比yum費(fèi)時味混,但是可以很好的根據(jù)需求自行增加或去掉某些模塊,有高度的定制性诫惭。但是正式使用yum安裝的也能夠滿足需求翁锡,需要yum安裝的可以看這篇文章

參考

https://www.sinosky.org/compile-nginx-with-a-custom-openssl-library.html

https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-open-source

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市夕土,隨后出現(xiàn)的幾起案子馆衔,更是在濱河造成了極大的恐慌,老刑警劉巖怨绣,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件角溃,死亡現(xiàn)場離奇詭異,居然都是意外死亡梨熙,警方通過查閱死者的電腦和手機(jī)开镣,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來咽扇,“玉大人邪财,你說我怎么就攤上這事≈视” “怎么了树埠?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長嘶伟。 經(jīng)常有香客問我怎憋,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任绊袋,我火速辦了婚禮毕匀,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘癌别。我一直安慰自己皂岔,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布展姐。 她就那樣靜靜地躺著躁垛,像睡著了一般。 火紅的嫁衣襯著肌膚如雪圾笨。 梳的紋絲不亂的頭發(fā)上教馆,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天,我揣著相機(jī)與錄音擂达,去河邊找鬼土铺。 笑死,一個胖子當(dāng)著我的面吹牛板鬓,可吹牛的內(nèi)容都是我干的舒憾。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼穗熬,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了丁溅?” 一聲冷哼從身側(cè)響起唤蔗,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎窟赏,沒想到半個月后妓柜,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡涯穷,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年棍掐,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片拷况。...
    茶點(diǎn)故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡作煌,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出赚瘦,到底是詐尸還是另有隱情粟誓,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布起意,位于F島的核電站鹰服,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜悲酷,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一套菜、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧设易,春花似錦逗柴、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至挟冠,卻和暖如春于购,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背知染。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工肋僧, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人控淡。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓嫌吠,卻偏偏與公主長得像,于是被迫代替她去往敵國和親掺炭。 傳聞我的和親對象是個殘疾皇子辫诅,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容