OpenResty + orange 环境搭建

需要组件版本:

orange:0.7.0 获取地址:https://github.com/sumory/orange 选择master或者0.7.0分支都行

OpenResty:1.15.8.1 获取地址:http://openresty.org/cn/download.html 

Lua:5.1 获取地址:http://www.lua.org/ftp/  选择对应版本

lor:0.3.4 获取地址:https://github.com/sumory/lor 选择master分支

luarocks: 3.1.3 获取地址:https://github.com/luarocks/luarocks 选择3.1.3分支。

安装顺序:OpenResty、lua、luarocks、lor、orange

步骤:

 安装OpenResty的依赖插件:yum install pcre pcre-devel openssl openssl-devel

上传openresty-1.15.8.1.tar.gz 解压: tar -xvf openresty-1.15.8.1.tar.gz  进入目录执行:

./configure --prefix=/usr/local/openresty --with-http_stub_status_module

配置环境变量(source /etc/profile):

export OPENRESTY_HOME=/usr/local/openresty

export NGINX_HOME=$OPENRESTY_HOME/nginx

export PATH=$OPENRESTY_HOME/bin:$NGINX_HOME/sbin:$PATH

或者软连:

ln -s /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx

ln -s /usr/local/openresty/bin/resty /usr/sbin/resty

上述测试:

nginx -v  和resty -V 能正常展示

[root@localhost openResty]# nginx -v

nginx version: openresty/1.15.8.1

[root@localhost openResty]# resty -V

resty 0.23

nginx version: openresty/1.15.8.1

built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)

built with OpenSSL 1.0.2k-fips  26 Jan 2017

TLS SNI support enabled

configure arguments: --prefix=/usr/local/openresty/nginx --with-cc-opt=-O2 --add-module=../ngx_devel_kit-0.3.1rc1 --add-module=../echo-nginx-module-0.61 --add-module=../xss-nginx-module-0.06 --add-module=../ngx_coolkit-0.2 --add-module=../set-misc-nginx-module-0.32 --add-module=../form-input-nginx-module-0.12 --add-module=../encrypted-session-nginx-module-0.08 --add-module=../srcache-nginx-module-0.31 --add-module=../ngx_lua-0.10.15 --add-module=../ngx_lua_upstream-0.07 --add-module=../headers-more-nginx-module-0.33 --add-module=../array-var-nginx-module-0.05 --add-module=../memc-nginx-module-0.19 --add-module=../redis2-nginx-module-0.15 --add-module=../redis-nginx-module-0.3.7 --add-module=../rds-json-nginx-module-0.15 --add-module=../rds-csv-nginx-module-0.09 --add-module=../ngx_stream_lua-0.0.7 --with-ld-opt=-Wl,-rpath,/usr/local/openresty/luajit/lib --with-http_stub_status_module --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-http_ssl_module

上述为安装OpenResty的步骤,如果仅仅使用OpenResty可以参考官网安装步骤。

安装lua5.1 

安装lua的依赖程序:yum install readline-devel

上传lua-5.1.tar.gz 解压: tar -xvf lua-5.1.tar.gz  进入目录执行:

.make linux test 

make install

验证方式通过lua命令展示(或者直接看安装的回显提示也行):

[root@localhost openResty]# lua

Lua 5.1  Copyright (C) 1994-2006 Lua.org, PUC-Rio

> ^C

[root@localhost openResty]#

安装luarocks 

wget https://luarocks.org/releases/luarocks-3.1.3.tar.gz

tar zxpf luarocks-3.1.3.tar.gz

cd luarocks-3.1.3

./configure

make

make install

安装lor

上传软件,进入目录,执行 make install 接口 

安装orange

上传软件,进入目录,修改conf目录下的orange.conf.example 和nginx.conf.example,前缀修改数据配置信息,后者修改端口。

先执行: make dependencies,执行 make install ,然后通过 orange start启动即可。

最后验证浏览器:http://ip:9999 访问即可。

备注:

    1:orange的0.7.0版本启动会占用80 端口

    2:  error: /usr/local/openresty/site/lualib/resty/dns/utils.lua:15: module 'pl.utils' not found: 等 **** not  found ,此问题 请通过 make dependencies 解决 (在安装orange步骤中)

你可能感兴趣的:(OpenResty + orange 环境搭建)