Home  >  Article  >  Backend Development  >  nginx+lua+redis installation

nginx+lua+redis installation

WBOY
WBOYOriginal
2016-08-08 09:22:321099browse

安装luajit2.0.2

wget http://luajit.org/download/LuaJIT-2.0.0-beta9.tar.gz

tar zxvf LuaJIT-2.0.0-beta9.tar.gz

cd LuaJIT-2.0.0-beta9

make

sudo make install PREFIX=/usr/local/luajit

安装ngx-devel-kit, lua-nginx-module, echo-nginx-module

cd /usr/local/

git clone https://github.com/simpl/ngx_devel_kit

git clone https://github.com/agentzh/echo-nginx-module

git clone https://github.com/chaoslawful/lua-nginx-module

luajit 环境变量

export LUAJIT_LIB=/usr/local/luajit/lib

export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0

安装nginx

wget nginx.org/download/nginx-1.6.3.tar.gz

tar zxvf nginx-1.6.3.tar.gz

cd nginx-1.6.3 ./configure --prefix=/usr/local/nginx --with-ld-opt="-Wl,-rpath,$LUAJITLIB" --add-module=/usr/local/ngxdevel_kit --add-module=/usr/local/echo-nginx-module --add-module=/usr/local/lua-nginx-module

make -j2

make install

验证/usr/local/nginx -V

安装redis-lua

git clone https://github.com/nrk/redis-lua

cp redis-lua/src/redis.lua /usr/local/share/lua/5.1/redis.lua

安装lua-socket2.0.2

wget http://luaforge.net/frs/download.php/2664/luasocket-2.0.2.tar.gz

tar zxvf luasocket-2.0.2.tar.gz

cd luasocket-2.0.2

vim config

LUAINC=-I/usr/local/luajit/lib
LUAINC=-I/usr/local/luajit/include/luajit-2.0

make

make install

redis  yum install redis即可

以上就介绍了nginx+lua+redis安装,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn