博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tengine动态模块扩展
阅读量:6372 次
发布时间:2019-06-23

本文共 2592 字,大约阅读时间需要 8 分钟。

Tengine

  • 安装tengine兼容nginx配置并启用模块ngx_http_concat_module
  • ngx_http_concat_module 该模块类似于apache中的mod_concat模块,用于合并多个文件在一个响应报文中。
  • --with-http_concat_module enable ngx_http_concat_module 静态模块
  • --with-http_concat_module=shared enable ngx_http_concat_module (shared) 动态模块

    2.安装

    yum install -y vim lrzsz tree screen psmisc lsof tcpdump wget ntpdate gcc gcc-c++ glibc glibc-devel pcre pcre-devel openssl openssl-devel systemd-devel net-tools iotop bc zip unzip zlib-devel bash-completion nfs-utils automake libxml2 libxml2-devel libxslt libxslt-devel perl perl-ExtUtils-Embed

    cd /usr/local/src
    wget
    cd tengine-2.1.2

查询nginx的配置,并删掉不支持的模块

/apps/nginx/sbin/nginx -V

在tengine-2.1.2目录下编译安装

./configure --prefix=/apps/tengine --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --add-module=/usr/local/src/echo-nginx-modulemake && make install

在tengine配置文件中导入nginx配置文件

vim /apps/tengine/conf/nginx.confinclude /apps/nginx/conf/server/*.conf;}

3.将ngx_http_concat_module静态直接编译到tengine

./configure --prefix=/apps/tengine --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --add-module=/usr/local/src/echo-nginx-module --with-http_concat_modulemake && make install

在配置文件location中打开concat模块

concat on;/apps/tengine/sbin/nginx -t/apps/tengine/sbin/nginx -s start

4.删除tengine重新安装tengine,ngx_http_concat_module动态直接编译到tengine

在tengine-2.1.2目录下编译安装

./configure --prefix=/apps/tengine --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --add-module=/usr/local/src/echo-nginx-modulemake && make install

在tengine配置文件中导入nginx配置文件

vim /apps/tengine/conf/nginx.confinclude /apps/nginx/conf/server/*.conf;}

将ngx_http_concat_module动态模块编译到安装目录

  • 动态模块可在不停止tengine(nginx),在配置文件中直接调用模块重新载入配置文件完成对tengine的功能扩展
./configure --prefix=/apps/tengine --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --add-module=/usr/local/src/echo-nginx-module --with-http_concat_module=sharedmake dso_installll /apps/tengine/modules/rwxr-xr-x 1 root root 93264 Jun  1 10:42 ngx_http_concat_module.sovim /apps/tengine/conf/nginx.confdso {load ngx_http_concat_module.so;}/apps/tengine/sbin/nginx -t/apps/tengine/sbin/nginx -s start

转载于:https://blog.51cto.com/13586612/2403639

你可能感兴趣的文章
256MB内存也装Vista
查看>>
MAC OX 安装rtx客户端和svn客户端
查看>>
Oracle GoldenGate 11g单向DDL配置实战
查看>>
【编译打包】nginx_1.6.2-1~precise.debian.tar.gz
查看>>
别总是把Windows和Linux混为一谈
查看>>
Terminal Services将改名为RDS
查看>>
NIO使用小结
查看>>
《Essential Linux Device Drivers》第1章
查看>>
[CTO札记]:多做[乘法],少些[加法]
查看>>
Microsoft Hyper-V Server 2012开启虚拟化-PowerShell
查看>>
玩 High API 系列之:快速实现身份验证
查看>>
移动的MobileMarket个人终于可以上传软件了
查看>>
Java中使用Runtime和Process类运行外部程序
查看>>
数据库泵(expdp/impdp)导入导出流程
查看>>
STM8S 串口应用 UART2 STM8S105
查看>>
ant 构建时遇到 “非法字符: \65279”的解决办法
查看>>
AES算法介绍
查看>>
数据库实例: STOREBOOK > 用户 > 编辑 用户: PUBLIC
查看>>
莫比乌斯反演学习【莫比乌斯反演】
查看>>
c#socket编程基础
查看>>