以下僅作為個人實(shí)際實(shí)驗(yàn)結(jié)果記錄,僅供參考。具體步驟沒寫,網(wǎng)上很多也很詳細(xì)
-----------------------------------------------------------
Openresty 官網(wǎng)地址: http://openresty.org/en/download.html
下載需要的版本。
解壓
wget https://openresty.org/download/openresty-1.13.6.1.tar.gz
tar -zxvf xxxx
下載:nginx_upstream_check_module
git地址: https://github.com/yaoweibin/nginx_upstream_check_module
unzip xxx
打補(bǔ)丁:(官方有寫部分內(nèi)容)
patch -p1 </path/to/nginx_http_upstream_check_module/check.patch
根據(jù)對應(yīng)的nginx版本來選擇對應(yīng)的patch,但是我裝的openresty-1.13.6.1似乎沒有對應(yīng)的包,用了12的,但是還是提示找不到,然后就直接回車了。(后面直接安裝也沒問題,萌新求解)
======
網(wǎng)友解答: https://www.oschina.net/question/2459866_2145514
======
編譯安裝:
./configure--prefix=/opt/openresty/releases/openresty-1.13.6.1--with-openssl=bundle/openssl-1.0.2h --with-pcre=bundle/pcre-8.41 --with-http_stub_status_module--http-client-body-temp-path=tmp/client_body_temp --http-proxy-temp-path=tmp/proxy_temp--http-fastcgi-temp-path=tmp/fastcgi_temp --http-uwsgi-temp-path=tmp/uwsgi_temp--http-scgi-temp-path=tmp/scgi_temp --add-module=./nginx_upstream_check_module
可以對比一下:下面是我安裝好后的結(jié)果;
Nginx -V
nginxversion: openresty/1.13.6.1
builtby gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.9)
builtwith OpenSSL 1.0.2h 3 May 2016
TLSSNI support enabled
configurearguments: --prefix=/opt/openresty/releases/openresty-1.13.6.1/nginx--with-cc-opt=-O2 --add-module=../ngx_devel_kit-0.3.0--add-module=../echo-nginx-module-0.61 --add-module=../xss-nginx-module-0.05--add-module=../ngx_coolkit-0.2rc3 --add-module=../set-misc-nginx-module-0.31--add-module=../form-input-nginx-module-0.12--add-module=../encrypted-session-nginx-module-0.07--add-module=../srcache-nginx-module-0.31 --add-module=../ngx_lua-0.10.11--add-module=../ngx_lua_upstream-0.07 --add-module=../headers-more-nginx-module-0.33--add-module=../array-var-nginx-module-0.05--add-module=../memc-nginx-module-0.18 --add-module=../redis2-nginx-module-0.14--add-module=../redis-nginx-module-0.3.7--add-module=../rds-json-nginx-module-0.15 --add-module=../rds-csv-nginx-module-0.08--add-module=../ngx_stream_lua-0.0.3--with-ld-opt=-Wl,-rpath,/opt/openresty/releases/openresty-1.13.6.1/luajit/lib--with-openssl=/root/openresty-1.13.6.1/bundle/openssl-1.0.2h--with-pcre=/root/openresty-1.13.6.1/bundle/pcre-8.41--with-http_stub_status_module--http-client-body-temp-path=tmp/client_body_temp--http-proxy-temp-path=tmp/proxy_temp --http-fastcgi-temp-path=tmp/fastcgi_temp--http-uwsgi-temp-path=tmp/uwsgi_temp --http-scgi-temp-path=tmp/scgi_temp--add-module=/root/openresty-1.13.6.1/nginx_upstream_check_module --with-stream--with-stream_ssl_module --with-http_ssl_module
一般nginx(或者是tengine)nginx -V給出的都是自定義安裝的模塊,默認(rèn)安裝的模塊在可以通過./configure --help查看(--without的都是)
但是呢,openresty卻不是!自定義和系統(tǒng)部分默認(rèn)的都在這兒顯示??!特別坑爹。導(dǎo)致萌新的我在新增模塊的時候全部加上nginx -V的模塊,./configure沒錯,在make就一直抱各種錯誤。后來才發(fā)現(xiàn)。
PS:./configure 后面跟的目錄最后一個最好不加/,否則后面nginx -V會出現(xiàn)//的效果,雖然沒有影響
附件:
nginx_upstream_check_module 使用方法:官網(wǎng)
聯(lián)系客服