介绍
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/openresty/nginx/sbin/nginx -t -c /usr/local/webservice/openresty/nginx/conf/nginx.conf
启动openresty
cd /usr/local/webservice/openresty/nginx/sbin
./nginx -s quit 停止
./nginx 启动
./nginx -s reload 重新加载配置文件
配置环境变量
vim ~/.bash_profile
最后加上
export PATH=/usr/local/webservice/openresty/bin:/usr/local/webservice/openresty/nginx/sbin:$PATH
1
source ~/.bash_profile
确证是否安装成功
使用nginx -t确认
nginx -v
nginx -s reload
————————————————
版权声明:本文为CSDN博主「gusijin」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/gusijin/article/details/97009098