安裝nginx同時安裝redis2-nginx-module模組
安裝redis
wget http://download.redis.io/releases/redis-3.2.9.tar.gz
tar xzf redis-3.2.9.tar.gz
cd redis-3.2.9
make
下載nginx及其redis模組
wget -c https://nginx.org/download/nginx-1.10.1.tar.gz
接下來下載redis2-nginx-module模組
在這裡下載(找了好長時間才找到)
https://github.com/openresty/redis2-nginx-module/tags
比如下載箭頭所指向的那個,
wget https://github.com/openresty/redis2-nginx-module/archive/v0.14.tar.gz
然後解壓
tar -zxvf v0.14.tar.gz
安裝模組
tar -zxvf nginx-1.10.1.tar.gz
目前目錄結構如下
cd nginx-1.10.1
接下來是重點-----編譯nginx
./configure --prefix=/usr/local/nginx --with-http_ssl_module --add-module=/usr/local/redis2-nginx-module
有可能遇到這個報錯,在centos上:
./configure: error: the HTTP rewrite module requires the PCRE library.
那就:
yum
install
pcre-devel
然後
make
make install
這樣就安裝好了
參考文獻:
http://www.runoob.com/redis/redis-install.html
https://github.com/openresty/redis2-nginx-module/tags
http://www.linuxidc.com/Linux/2016-09/134907.htm