nginx-lua插件安裝

1.前期需要的安裝包下載地址:

對(duì)應(yīng)下載的網(wǎng)站:https://github.com/openresty

luajit: wget --no-check-certificate https://github.com/openresty/luajit2/archive/refs/tags/v2.1-20210510.tar.gz

lua-nginx-module:wget --no-check-certificate https://github.com/openresty/lua-nginx-module/archive/refs/tags/v0.10.19rc1.tar.gz

lua-resty-core:wget --no-check-certificate https://github.com/openresty/lua-resty-core/archive/refs/tags/v0.1.22.tar.gz

lua-resty-lrucache:wget --no-check-certificate https://github.com/openresty/lua-resty-lrucache/archive/refs/tags/v0.11.tar.gz

nginx-1.20.2:wget --no-check-certificate http://nginx.org/download/nginx-1.20.2.tar.gz

ngx_devel_kit-0.3.0:wget --no-check-certificate https://github.com/vision5/ngx_devel_kit/archive/refs/tags/v0.3.0.tar.gz

備注:

luajit? ? ? ?#不要下載官網(wǎng)的枉证,要去下載openresty的優(yōu)化版本 后面會(huì)說出現(xiàn)的坑

lua-resty-core和lua-resty-lrucache是必須的包封孙,0.10.16 以后都需要這兩個(gè)包

2.安裝(app用戶安裝):

#安裝包放到這個(gè)目錄下面

mkdir /app/nginx_plug? ? ? ? ? ?

tar xf? v2.1-20210510.tar.gz

cd luajit2-2.1-20210510

make install? PREFIX=/app/nginx_plug/LuaJIT

#添加環(huán)境變量

export LUAJIT_LIB=/app/nginx_plug/LuaJIT/lib

export LUAJIT_INC=/app/nginx_plug/LuaJIT/include/luajit-2.1

[app@web01 /opt/download]$ tail -3f /etc/profile

#Lua

export LUAJIT_LIB=//app/nginx_plug/LuaJIT/lib

export LUAJIT_INC=/app/nginx_plug/LuaJIT/include/luajit-2.1

source??/etc/profile

#安裝Lua核心庫

lua-resty-core-0.1.21.tar.gz [必須]

lua-resty-lrucache-0.11.tar.gz [必須]

#安裝在同一個(gè)目錄下

cd lua-resty-core-0.1.22

make install PREFIX=?/etc/profile/lua_core

cd ../lua-resty-lrucache-0.11

make install PREFIX=?/etc/profile/lua_core

#解壓v0.3.0.tar.gz和v0.10.19rc1.tar.gz

#nginx安裝

cd nginx-1.20.2/

./configure?--prefix=/app/nginx20 --pid-path=/app/nginx20/logs/nginx.pid --with-http_ssl_module --with-http_v2_module --with-http_dav_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 --http-client-body-temp-path=/app/nginx20/client_body --http-proxy-temp-path=/app/nginx20/proxy --http-fastcgi-temp-path=/app/nginx20/fastcgi --http-uwsgi-temp-path=/app/nginx20/uwsgi --http-scgi-temp-path=/app/nginx20/scgi --with-stream --with-ld-opt=-Wl,-E --add-module=/app/nginx_plug/lua-nginx-module-0.10.19rc1/ --add-module=/app/nginx_plug/ngx_devel_kit-0.3.0

make

make install

#加載lua庫糊啡,加入到ld.so.conf文件

[root@web01 ~]# echo "/app/nginx_plug/LuaJIT/lib" >> /etc/ld.so.conf

[root@web01 ~]#? ldconfig

#啟動(dòng)nginx

/app/nginx20/sbin/nginx -c /app/nginx20/conf/nginx.conf

3.上面都是經(jīng)過安裝的一些坑之后安裝完成的,下面是安裝過程中出現(xiàn)的坑

報(bào)錯(cuò)截圖:配置文件沒有問題,但是起不來

啟動(dòng)報(bào)錯(cuò)

1)nginx: [alert] detected a LuaJIT version which is not OpenResty's; many optimizations will be disabled and performance will be compromised (see https://github.com/openresty/luajit2 for OpenResty's LuaJIT or, even better, consider using the OpenResty releases from https://openresty.org/en/download.html)

# 讓我不要用這個(gè)luajit版本莹捡,可以用openresty提供的luajit優(yōu)化版本怕犁,或者干脆直接用openresty

#卸載luajit官網(wǎng)版本,下載openresty提供的luajit優(yōu)化版本

對(duì)應(yīng)luajit-----#不要下載官網(wǎng)的幢码,要去下載openresty的優(yōu)化版本 后面會(huì)說出現(xiàn)的坑

2)報(bào)錯(cuò)信息:

nginx: [alert] failed to load the 'resty.core' module (https://github.com/openresty/lua-resty-core); ensure you are using an OpenResty release from https://openresty.org/en/download.html (reason: module 'resty.core' not found:

no field package.preload['resty.core']

no file './resty/core.lua'

no file '/usr/local/share/luajit-2.0.5/resty/core.lua'

no file '/usr/local/share/lua/5.1/resty/core.lua'

no file '/usr/local/share/lua/5.1/resty/core/init.lua'

no file './resty/core.so'

no file '/usr/local/lib/lua/5.1/resty/core.so'

no file '/usr/local/lib/lua/5.1/loadall.so'

no file './resty.so'

no file '/usr/local/lib/lua/5.1/resty.so'

no file '/usr/local/lib/lua/5.1/loadall.so') in /app/nginx20/conf/nginx.conf:441

解決方法:

1)這個(gè)問題到git上面看了,就是在nginx.conf 中的 http{}模塊中加入下面這行代碼:lua_load_resty_core off;但是檢查的時(shí)候發(fā)現(xiàn)這命令已經(jīng)廢棄,顯然這樣不行笤休,造成這樣的原因是:nginx_lua 0.10.16之后的版本是需要lua_resty_core庫的,需要需要在安裝lua-resty-core-0.1.21和lua-resty-lrucache-0.11(安裝參考上面)

2)安裝完成之后依然還是報(bào)錯(cuò):

nginx: [alert] failed to load the 'resty.core' module (https://github.com/openresty/lua-resty-core); ensure you are using an OpenResty release from https://openresty.org/en/download.html (reason: module 'resty.core' not found:

解決方法:創(chuàng)建超鏈接

ln -s /app/nginx_plug/lua_core/lib/lua/resty? ? /app/nginx_plug/LuaJIT/share/luajit-2.1.0-beta3/resty

3)再重啟發(fā)現(xiàn)服務(wù)可以啟動(dòng)了

nginx啟動(dòng)
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末症副,一起剝皮案震驚了整個(gè)濱河市店雅,隨后出現(xiàn)的幾起案子政基,更是在濱河造成了極大的恐慌,老刑警劉巖闹啦,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件沮明,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡窍奋,警方通過查閱死者的電腦和手機(jī)荐健,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來费变,“玉大人摧扇,你說我怎么就攤上這事≈科纾” “怎么了扛稽?”我有些...
    開封第一講書人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長滑负。 經(jīng)常有香客問我在张,道長,這世上最難降的妖魔是什么矮慕? 我笑而不...
    開封第一講書人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任帮匾,我火速辦了婚禮,結(jié)果婚禮上痴鳄,老公的妹妹穿的比我還像新娘瘟斜。我一直安慰自己,他們只是感情好痪寻,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開白布螺句。 她就那樣靜靜地躺著,像睡著了一般橡类。 火紅的嫁衣襯著肌膚如雪蛇尚。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,970評(píng)論 1 284
  • 那天顾画,我揣著相機(jī)與錄音取劫,去河邊找鬼。 笑死研侣,一個(gè)胖子當(dāng)著我的面吹牛谱邪,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播庶诡,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼虾标,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起璧函,我...
    開封第一講書人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤傀蚌,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后蘸吓,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體善炫,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年库继,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了箩艺。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡宪萄,死狀恐怖艺谆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情拜英,我是刑警寧澤静汤,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站居凶,受9級(jí)特大地震影響虫给,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜侠碧,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一抹估、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧弄兜,春花似錦药蜻、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至盛垦,卻和暖如春湿弦,著一層夾襖步出監(jiān)牢的瞬間瓤漏,已是汗流浹背腾夯。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蔬充,地道東北人蝶俱。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像饥漫,于是被迫代替她去往敵國和親榨呆。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

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