HttpRedis

centos7安装openresty1.15

与世无争的帅哥 提交于 2019-11-28 07:24:09
介绍 OpenResty目标是让你的Web服务直接跑在 Nginx 服务内部,充分利用 Nginx 的非阻塞 I/O 模型,不仅仅对 HTTP 客户端请求,甚至于对远程后端诸如 MySQL、PostgreSQL、Memcached 以及 Redis 等都进行一致的高性能响应。 下载地址 https://openresty.org/en/download.html wget https://openresty.org/download/openresty-1.15.8.1.tar.gz 安装所需依赖包 yum -y install readline-devel pcre-devel openssl-devel gcc perl curl 编译安装 解压压缩包 tar zxvf openresty-1.15.8.1.tar.gz 进入文件夹 cd openresty-1.15.8.1 编译 ./configure --prefix=/usr/local/webservice/openresty --with-luajit --without-http_redis2_module --with-http_iconv_module 编译&编译安装 gmake & gmake install 配置 启动Nginx,加载nginx主配置文件 /usr/local/webservice