08月29, 2016

nginx系统echo-nginx-module安装教程

1、下载echo 模块:

wget https://github.com/openresty/echo-nginx-module/archive/v0.60.tar.gz


2、复制到一个模块目录:

tar -xzvf v0.60.tar.gz
mkdir /usr/local/nginx/module
cp -r echo-nginx-module-0.60/ /usr/local/nginx/module


3、重新编译nginx,注意要在原来的模块编译参数上,再加上echo 模块 

进入nginx源码目录,

./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_flv_module --with-http_geoip_module --with-http_gzip_static_module
 --add-mouule=/usr/local/nginx/module/echo-nginx-module-0.58/

编译: 
make -j2 
##########注意不要 make install 。########

此时已经编译了,nginx 在源码的 sbin/下面


4、最后一步:

mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx_bak
mv objs/nginx /usr/local/nginx/sbin/
kill -USR2 `cat /var/run/nginx.pid`
kill -QUIT `cat /var/run/nginx.pid.oldbin`




本文链接:https://lxyit.com/article/show/109.html

-- EOF --