码迷,mamicode.com
首页 > 其他好文 > 详细

liunx 模块

时间:2017-11-02 16:55:49      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:local   bsp   参数   源码包   大写   安装   ast   pagespeed   第三方模块   

 

查看nginx在安装时开启了哪些模块

如果你nginx是rpm包安装的,直接用如下命令nginx -V
如果你是源码包编译安装,假如你的安装路径是/usr/local/nginx,那么你可以使用: /usr/local/nginx/sbin/nginx -V 注意是大写的V

 

-----------------------------------------------------------------------------------------------------------------

nginx 第三方模块安装方法:
./configure --prefix=/你的安装目录 --add-module=/第三方模块目录
以安装 pagespeed 模块实例
1. 在未安装 nginx 的情况下安装 nginx 第三方模块

# ./configure --prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--with-http_ssl_module --with-http_realip_module \
--with-http_image_filter_module \
--add-module=../ngx_pagespeed-master --add-module=/第三方模块目录
# make
# make isntall
# /usr/local/nginx-1.4.1/sbin/nginx


2. 在已安装 nginx 情况下安装 nginx 模块

# ./configure --prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--with-http_ssl_module --with-http_realip_module \
--with-http_image_filter_module \
--add-module=../ngx_pagespeed-master
# make
# /usr/local/nginx-1.4.1/sbin/nginx -s stop
# cp objs/nginx /usr/local/nginx/sbin/nginx
# /usr/local/nginx-1.4.1/sbin/nginx


相比之下仅仅多了一步覆盖 nginx 文件.
总结,安装 nginx 安装第三方模块实际上是使用–add-module 重新安装一次 nginx,不要 make install 而是直接把编译
目录下 objs/nginx 文件直接覆盖老的 nginx 文件.如果你需要安装多个 nginx 第三方模块,你只需要多指定几个相应的
–add-module 即可.
[warning]备注:重新编译的时候,记得一定要把以前编译过的模块一同加到 configure 参数里面.[/warning]

liunx 模块

标签:local   bsp   参数   源码包   大写   安装   ast   pagespeed   第三方模块   

原文地址:http://www.cnblogs.com/xuey/p/7772814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!