1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
1. 安装drizzle库
wget http://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz
tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server --prefix=/usr/local
make libdrizzle-1.0
make install-libdrizzle-1.0
依赖安装:yum install pcre-devel openssl-devel zlib zlib-devel postgresql-devel
cd /usr/local/src;
wget http://ftp.exim.llorien.org/pcre/pcre-8.39.tar.gz
tar -zxvf pcre-8.39.tar.gz
wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2j.tar.gz
tar -zxvf openssl-1.0.2j.tar.gz
wget http://www.zlib.net/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
useradd -M -s /sbin/nologin nobody
下载源码:wget https://openresty.org/download/openresty-1.11.2.4.tar.gz;
解压:tar -zxvf openresty-1.11.2.4.tar.gz;
执行安装命令
./configure \
--prefix=/usr/local/services/openresty \
--with-cc-opt='-DNGX_LUA_USE_ASSERT -DNGX_LUA_ABORT_AT_PANIC -O2' \
--with-ld-opt=-Wl,-rpath,/usr/local/lib:/usr/local/services/openresty/luajit/lib \
--pid-path=/usr/local/services/openresty/nginx/run/nginx.pid \
--http-client-body-temp-path=/usr/local/services/openresty/nginx/cache/clientbody \
--http-proxy-temp-path=/usr/local/services/openresty/nginx/cache/proxy \
--http-fastcgi-temp-path=/usr/local/services/openresty/nginx/cache/fastcgi \
--http-uwsgi-temp-path=/usr/local/services/openresty/nginx/cache/uwsgi \
--http-scgi-temp-path=/usr/local/services/openresty/nginx/cache/scgi \
--with-http_postgres_module \
--with-http_iconv_module \
--with-http_ssl_module \
--with-http_addition_module \
--with-http_stub_status_module \
--with-http_v2_module \
--with-http_slice_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_realip_module \
--with-http_drizzle_module \
--with-http_gzip_static_module \
--with-http_gunzip_module \
--with-mail \
--with-mail=dynamic \
--with-threads \
--with-stream \
--with-stream=dynamic \
--with-stream_ssl_module \
--with-libdrizzle=/usr/local \
--with-ipv6 \
--with-file-aio \
--with-pcre-jit \
--with-zlib=/usr/local/src/zlib-1.2.11 \
--user=nobody \
--group=nobody \
--with-openssl=/usr/local/src/openssl-1.0.2j \
--with-pcre=/usr/local/src/pcre-8.39 \
--with-debug \
gmake
gmake install
yum install epel-release //扩展包更新包
yum update //更新yum源
openresty扩展安装方法:
htop安装:
yum -y install epel-release
yum -y install htop
openresty安装方法:
应用:http://blog.csdn.net/aaa1117a8w5s6d/article/details/51007741
安装drizzle库
wget http://agentzh.org/misc/nginx/drizzle7-2011.07.21.tar.gz
tar xzvf drizzle7-2011.07.21.tar.gz
cd drizzle7-2011.07.21/
./configure --without-server --prefix=/usr/local
make libdrizzle-1.0
make install-libdrizzle-1.0
依赖安装:yum install pcre-devel open-ssl-devel
下载源码:wget https://openresty.org/download/openresty-1.11.2.4.tar.gz
执行安装命令
./configure --prefix=/usr/local/services/openresty --pid-path=/usr/local/services/openresty/nginx/run/nginx.pid --http-client-body-temp-path=/usr/local/services/openresty/nginx/cache/clientbody --http-proxy-temp-path=/usr/local/services/openresty/nginx/cache/proxy --http-fastcgi-temp-path=/usr/local/services/openresty/nginx/cache/fastcgi --http-uwsgi-temp-path=/usr/local/services/openresty/nginx/cache/uwsgi --http-scgi-temp-path=/usr/local/services/openresty/nginx/cache/scgi --with-http_ssl_module --with-http_addition_module --with-http_stub_status_module --with-http_v2_module --with-http_slice_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-stream --with-stream=dynamic --with-stream_ssl_module --with-http_realip_module --with-threads --with-debug --with-libdrizzle=/usr/local --with-http_drizzle_module
gmake
gmake install
|