一过吻、前言
我在《0基礎(chǔ)自學(xué)linux運(yùn)維-2.1-源碼退腥、二進(jìn)制、yum/apt安裝區(qū)別》說過:
當(dāng)yum/apt和二進(jìn)制安裝都不滿足需求的情況下才用編譯安裝栋齿。主要思想是IT是講究效率的時(shí)代苗胀,明明可以yum這么簡(jiǎn)單、方便就能完成的褒颈,偏偏就有人為了炫耀自己能力強(qiáng)用編譯安裝柒巫,結(jié)果“簡(jiǎn)單的事情復(fù)雜化”,也不方便維護(hù)谷丸,不是相當(dāng)給自己挖個(gè)坑嗎堡掏?
??? 有能力不用急著去證明,但出問題你解決不了會(huì)證明你多么無能刨疼。
“大道至簡(jiǎn)”泉唁,用最簡(jiǎn)單的方式實(shí)現(xiàn)自己想要的東西,能用別人的輪子就沒有必要自己造揩慕。
二亭畜、nginx編譯安裝
當(dāng)我們需要ninx編譯安裝的時(shí)候,這里有一個(gè)小技巧迎卤,就是我先用虛擬機(jī)yum安裝一個(gè)nignx拴鸵,然后nginx -V知道它的基礎(chǔ)編譯參數(shù),如果需要添加模塊如echo模塊蜗搔、lua模塊劲藐,nginx
yum默認(rèn)是沒有安裝的,只需要在yum安裝基礎(chǔ)上得到的參數(shù)再加上相應(yīng)模塊的參數(shù)即可樟凄。
nginx模塊安裝可以看它的官方模塊頁(yè)面聘芜,里面每一個(gè)模塊都有自己的安裝說明。
最后把nginx
yum安裝卸載缝龄,下載對(duì)應(yīng)版本的源碼包汰现,進(jìn)行編譯安裝就大功告成。
2.1 查看nginx編譯參數(shù)
2.1.1 nginx yum安裝
#安裝常用的依賴叔壤,如果gcc瞎饲、gcc++需要高版本的看我相關(guān)的文章
yum -y install gcc gcc++ zlib zlib-devel openssl openssl-devel pcre pcre-devel
#el7,其中el(Red Hat E nterprise L inux(EL)的縮寫)炼绘,7表示系統(tǒng)版本
#EL7是Red Hat 7.x企软,CentOS 7.x和CloudLinux 7.x的下載
rpm -ih http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install nginx -y
2.1.2 查看nginx編譯參數(shù)
[root@vm61 ~]# nginx -V
nginx version: nginx/1.16.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)
built with OpenSSL1.0.2k-fips? 26 Jan 2017
TLS SNI support enabled
configure arguments:--prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules--conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log--http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid--lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp--http-proxy-temp-path=/var/cache/nginx/proxy_temp--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp--http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx--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--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2-fexceptions -fstack-protector-strong --param=ssp-buffer-size=4-grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro-Wl,-z,now -pie'
有些特殊的選項(xiàng)可以不先,如下面的gcc選項(xiàng)不要
--with-cc-opt='-O2 -g -pipe -Wall-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong--param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC'--with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'
我把安美化一下效果如下:其中“空格+\”表示還沒輸入結(jié)束饭望,換行繼續(xù)仗哨。
--prefix=/etc/nginx --sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib64/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp\
--user=nginx --group=nginx --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
得到上面的編譯參數(shù)形庭,可以把nginx yum安裝卸載了,卸載之前把/etc/nginx/nginx.conf和/etc/nginx/conf.d/default.conf備份出來厌漂,這樣就可以當(dāng)yum之前的習(xí)慣來使用了萨醒。
#備份/etc/nginx/nginx.conf和/etc/nginx/conf.d/default.conf
#備份啟動(dòng)文件
mkdir -pv /disk1/tools/nginx
cd /disk1/tools/nginx
cp /etc/nginx/nginx.conf .
cp
/etc/nginx/conf.d/default.conf .
cp /usr/lib/systemd/system/nginx.service
.
#卸載nignx,如果是在自己的虛擬機(jī)并不是在要編譯安裝的機(jī)子苇倡,不用卸載也行
yum remove nginx –y
2.2 編譯安裝
我以安裝nginx插件echo為例子富纸,進(jìn)行編譯安裝。
2.2.1 查看echo模塊安裝說明
Nginx官網(wǎng)所支持的模塊列表為https://www.nginx.com/resources/wiki/modules/
打找echo模塊的安裝說明https://github.com/openresty/echo-nginx-module#installation
按照步驟進(jìn)行安裝:
2.2.2 下載nignx源碼
打開nginx下載官網(wǎng)http://nginx.org/en/download.html找到對(duì)應(yīng)的1.16源碼包
或直接使用wget命令:
wget http://nginx.org/download/nginx-1.16.0.tar.gz
2.2.3 下載echo模塊
https://github.com/openresty/echo-nginx-module/tags 目前最新版本為0.61
#不要用wget下載旨椒,會(huì)變樣的晓褪,直接點(diǎn)擊下載就好,安裝lrzsz(yum install rzsz -y)然后#用cd命令進(jìn)到要存儲(chǔ)echo安裝模塊的目錄中综慎,最后把echo模塊的tar.gz包拖到xshell
#界面中就行了就會(huì)自動(dòng)上傳涣仿,并解壓,我這里統(tǒng)一放在/disk1/tools中
tar -xf echo-nginx-module-0.61.tar.gz
2.2.4 安裝
#安裝常用的依賴示惊,如果gcc好港、gcc++需要高版本的看我相關(guān)的文章
yum -y install gcc gcc++ zlib zlib-devel openssl openssl-devel pcre pcre-devel
#解壓剛剛下載的nginx-1.16.0.tar.gz包
tar -xf nginx-1.16.0.tar.gz
cd nginx-1.16.0
#如果不懂./configure用法的話可以使用./configure --hlep命令
./configure --prefix=/etc/nginx
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib64/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx --group=nginx --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 \
--add-module=/disk1/tools/echo-nginx-module-0.61
#編譯
make
make install
cd ..
rm -rf nginx-1.16.0 echo-nginx-module-0.61
注:有的編譯用的是cmaek,如果cmake錯(cuò)的話米罚,解決錯(cuò)誤之后钧汹,cmake前刪除前一次產(chǎn)生的cmakecache.txt再進(jìn)行cmake即可
2.3 修改配置
整一下nginx以yum方式安裝的配置,個(gè)人比較習(xí)慣录择,因?yàn)槲沂窃诒緳C(jī)yum改為源碼安裝拔莱,所以配置直接復(fù)制,如果是非其它機(jī)子隘竭,上傳一下即可辨宠。
#添加nginx用戶,如果是yum安裝過則不用添加
groupadd nginx
useradd -s /sbin/nologin -g
nginx -M nginx
cd /etc/nginx/
mv nginx.conf nginx.conf.orig
cp /disk1/tools/nginx/nginx.conf .
#建立原conf.d目錄
mkdir conf.d
cd conf.d/
cp /disk1/tools/nginx/default.conf .
#yum中的default.conf的hmlt默認(rèn)為/usr/share/nginx/html货裹,源碼安裝默認(rèn)為
# /etc/nginx/html,所以要修改一下
sed -i 's#/usr/share/nginx/html#/etc/nginx/html#g' default.conf
cat default.conf
#語(yǔ)法檢查一下
[root@vm61 conf.d]# nginx -t
nginx: the configuration file
/etc/nginx/nginx.conf syntax is ok
nginx: [emerg] mkdir()
"/var/cache/nginx/client_temp" failed (2: No such file or directory)
nginx: configuration file
/etc/nginx/nginx.conf test failed
#解決方法精偿,建立相關(guān)目錄
mkdir -pv /var/cache/nginx/client_temp
chown nginx.nginx -R /var/cache/nginx
nginx -t
2.4 復(fù)制啟動(dòng)腳本
cp/disk1/tools/nginx/nginx.service?/usr/lib/systemd/system/nginx.service
#啟動(dòng)nginx
systemctl start nginx
systemctl status nginx
#打開瀏覽器輸入nginx所在的IP地址弧圆,我這里是192.168.3.61,效果如下:
三笔咽、測(cè)試
echo插件安裝了搔预,現(xiàn)在測(cè)試一下echo功能,操作如下:
cd /etc/nginx/conf.d/
cp default.conf default.conf.orig
vi default.conf
#在“l(fā)ocation
/{ ... }上一行添加
??? location /t1 {
????? echo "this is t1"
??? }
#輸入“:wq”退出
#平滑重啟叶组,生產(chǎn)環(huán)境建議用平滑重啟拯田,如果不行再重啟
nginx?-t
四、結(jié)束語(yǔ)
我這里是借助nginx yum安裝甩十,借用了它的配置及啟動(dòng)腳本船庇,因?yàn)槭枪俜降乃砸话銜?huì)比自己寫的好吭产,也實(shí)現(xiàn)了用最簡(jiǎn)單的方法達(dá)到自己的目的。
無論安裝什么插件一般看插件官方的document鸭轮,要么就是看所在軟件的模塊列表是否有該插件的安裝文檔臣淤。然后照著安裝就行了。我相信你也會(huì)用nginx安裝其它插件了窃爷,如lua這個(gè)也是安裝頻率比較高的邑蒋。