作者:ZJ1314520俊 | 来源:互联网 | 2014-05-28 09:40
a.安装drizzle7-2011.07.21.tar.gzwgethttp://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gztarzxvfdrizzle7-2011.07.21.tar.gzcddrizzle7-2011.07.21./configure--pre
a.安装drizzle7-2011.07.21.tar.gz
wget http://agentzh.org/misc/
nginx/drizzle7-2011.07.21.tar.gz
tar zxvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21
./configure --prefix=/usr/local/drizzle7 --without-server
make install-libdrizzle-1.0
echo "/usr/local/drizzle7/lib/" >>
/etc/ld.so.conf
ldconbfig
b.安装lua
tar zxvf readline-6.1. tar .gz
cd readline-6.1
. /configure
make
make install
为了让动态链接库为系统所共享,我们这里用ldconfig
ldconfig - v
如果下面还是报错 yum install readline-devel ncurses-devel
|
tar zxvf lua-5.1.4. tar .gz
cd lua-5.1.4
# 64位系统,需在CFLAGS里加上-fPIC ,我们用vim编辑下src/Makefile文件,修改代码如下所示:
vi src /Makefile
CFLAGS= -O2 -Wall -fPIC $(MYCFLAGS)
vi Makefile
INSTALL_TOP=
/usr/local/lua
#修改安装路径
make linux
make install
|
c.配置变量。
[root@HANginxBackup ngx_mod] # export
LUA_LIB=/usr/local/lua/lib/
[root@HANginxBackup ngx_mod] # export
LUA_INC=/usr/local/lua/include/
[root@HANginxBackup ngx_mod] # export
LIBDRIZZLE_INC=/usr/local/drizzle7/include/libdrizzle-1.0/
[root@HANginxBackup ngx_mod] # export
LIBDRIZZLE_LIB=/usr/local/drizzle7/lib/
|
d.下载解压模块
根据“详细模块地址分别为” 下载
unzip drizzle-nginx-module-v0.1.2-0-gb05c67f.zip -d
/usr/src/ngx_mod/
unzip echo -nginx-module-v0.41-1-gb3ad5c1.zip -d
/usr/src/ngx_mod/
unzip lua-nginx-module-v0.5.14-0-g7b363ee.zip -d
/usr/src/ngx_mod/
unzip memc-nginx-module-v0.13rc3-17-gecaf870.zip -d
/usr/src/ngx_mod/
unzip ngx_devel_kit-v0.2.17-10-g4192ba6.zip -d
/usr/src/ngx_mod/
unzip rds-json-nginx-module-v0.12rc10-1-g804371f.zip -d
/usr/src/ngx_mod
unzip set -misc-nginx-module-v0.22rc8-5-ge79e7f0.zip -d
/usr/src/ngx_mod/
unzip srcache-nginx-module-v0.14-1-gec3c754.zip -d
/usr/src/ngx_mod/
|
e安装nginx
上模块一起安装
cd nginx-1.0.10/
. /configure --user=nginx --group=nginx --prefix=
/usr/local/ngx_mod/ --with-http_stub_status_module
--with-http_ssl_module --with-sha1= /usr/lib --add-module=
/usr/src/nginx-1 .0.10 /trunk/ --add-module=
/usr/src/ngx_mod/simpl-ngx_devel_kit-4192ba6 --add-module=
/usr/src/ngx_mod/agentzh-set-misc-nginx-module-e79e7f0
--add-module= /usr/src/ngx_mod/agentzh-memc-nginx-module-ecaf870
--add-module= /usr/src/ngx_mod/agentzh-echo-nginx-module-b3ad5c1
--add-module= /usr/src/ngx_mod/chaoslawful-lua-nginx-module-7b363ee
--add-module= /usr/src/ngx_mod/agentzh-srcache-nginx-module-ec3c754
--add-module=
/usr/src/ngx_mod/chaoslawful-drizzle-nginx-module-b05c67f
--add-module=
/usr/src/ngx_mod/agentzh-rds-json-nginx-module-804371f
make && make install
|