openresty安装

cd /usr/local/mkdir datacd datawget http://openresty.org/download/openresty-1.9.15.1.tar.gz

cd /usr/local/data/
cd openresty-1.9.15.1/bundle/LuaJIT-2.1-20160517/
make clean
make clean && make && make install
cd  /usr/local/data/openresty-1.9.15.1/bundle/
wget https://github.com/FRiCKLE/ngx_cache_purge/archive/2.3.tar.gz
tar -zxvf 2.3 

wget http://github.com/FRiCKLE/ngx_cache_purge/archive/2.3.tar.gz
tar -zxvf 2.3.1

wget https://github.com/yaoweibin/nginx_upstream_check_module/archive/v0.3.0.tar.gz
tar -zxvf v0.3.0
 ./configure --prefix=/usr/local/openresty  --with-http_realip_module  --with-pcre  --with-luajit --add-module=./bundle/ngx_cache_purge-2.3/ --add-module=./bundle/nginx_upstream_check_module-0.3.0/ -j2
make & make install
cd /usr/local/openrestry/./sbin/nginx

配置参数:

--with***                安装一些内置/集成的模块

--with-http_realip_module  取用户真实ip模块

-with-pcre                Perl兼容的达式模块

--with-luajit              集成luajit模块

--add-module           添加自定义的第三方模块,如此次的ngx_che_purge

--prefix       指定安装路径

安装模块说明:

openresty-1.9.15.1/bundle目录里存放着nginx核心和很多第三方模块,比如有我们需要的Lua和LuaJIT。

安装LuaJIT

下载ngx_cache_purge模块,该模块用于清理nginx缓存

下载nginx_upstream_check_module模块,该模块用于ustream健康检查

时间: 2024-11-07 14:15:34

openresty安装的相关文章

mac下openresty安装

//openresty安装 http://openresty.org/ brew updatebrew install pcre openssl ./configure --prefix=/usr/local/openresty --with-cc-opt="-I/usr/local/opt/openssl/include/ -I/usr/local/opt/pcre/include/" --with-ld-opt="-L/usr/local/opt/openssl/lib/

OpenResty 安装 drizzle-nginx-module

1.下载drizzle模块 wget http://openresty.org/download/drizzle7-2011.07.21.tar.gz 2.安装drizzle模块 tar zxvf drizzle7-2011.07.21.tar.gz cd drizzle7-2011.07.21 ./configure --prefix=/usr/local/drizzle --without-server make libdrizzle-1.0 make install-libdrizzle-

Nginx+Lua+OpenResty安装

Nginx+Lua+OpenResty安装1,安装依赖yum install libreadline-dev libncurses5-dev libpcre3-dev libssl-dev perl2,下载ngx_openresty-xxx.tar.gz并解压(ngx_openresty-xxx/bundle目录里存放着nginx核心和很多第三方模块,比如有我们需要的Lua和LuaJIT.)wget https://openresty.org/download/ngx_openresty-1.9

Mac OpenResty安装

参考网址:          http://openresty.org/cn/installation.html 1.安装前的准备 Mac OS X (Darwin) 用户 使用brew工具安装pcre.openssl库: brew install pcre openssl 2.下载 OpenResty的源码包l, 请到 Download 页下载 下载成功后解压openresty-1.9.15.1(版本号) 3. 使用终端,cd 到openresty-1.9.15.1目录下编译.安装openre

[openresty]安装nginx_lua

这种方式是直接安装openresty ,不是通过重新编译nginx Ubuntu 安装 安装依赖包 $ sudo apt-get install libreadline-dev libncurses5-dev libpcre3-dev libssl-dev perl make 软连接 $ sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so /usr/lib/liblua.so 下载安装包 $ http --download http://openr

nginx实战(一) OpenResty 安装

前言 系统环境是Centos 7,nginx选用的是openresty 版本 编译OpenResty 下载 wget https://openresty.org/download/openresty-1.13.6.2.tar.gztar zxmf openresty-1.13.6.2.tar.gz 编译 cd openresty-1.13.6.2/yum -y install gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-

OpenResty安装使用教程(CentOS 6)

一.安装OpenResty Linux官方建议直接通过官方提供的预编译包安装:http://openresty.org/cn/linux-packages.html # 确保yum周边工具已经安装 yum install yum-utils -y # 添加仓库 yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo # 安装openresty yum install openresty -

openresty 安装部署脚本

工作中经常部署openresty做了个sh 压缩吧解压到/opt下执行脚本,将安装到/usr/local/openresty 脚本如下: #!/bin/bash#init dirautoDir="/usr/local/src"sourceDir="/opt/openresty"openrestyTarGz="openresty-1.15.8.2.tar.gz"opensslTarGz="openssl-1.0.1l.tar.gz&quo

安装OpenResty开发环境

OpenResty是一个基于 Nginx 与 Lua 的高性能 Web 平台,其内部集成了大量精良的 Lua 库.第三方模块以及大多数的依赖项.用于方便地搭建能够处理超高并发.扩展性极高的动态 Web 应用.Web 服务和动态网关(摘自官网).本文将会介绍如何在Centos7上,安装Nginx+Lua的开发环境,并运行一个"Hello World"示例. 一.环境安装 1.1 创建工作路径 我计划将Openresty安装到/usr/servers下,首先创建这个文件夹. [[email