openresty 两种安装方式
Posted feirenraoyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openresty 两种安装方式相关的知识,希望对你有一定的参考价值。
方法1:yum安装
wget https://openresty.org/package/centos/openresty.repo -O /etc/yum.repos.d/openresty.repo
yum install pcre-devel openssl-devel gcc #开发库依赖
yum check-update # 更新yum数据
yum install -y openresty
yum install -y openresty-resty #安装命令行工具 resty
yum install -y openresty-opm #命令行工具 opm
方法2:编译安装
wget https://openresty.org/download/openresty-1.21.4.1.tar.gz # 下载
tar xzvf openresty-1.21.4.1 # 解压
cd openresty-1.21.4.1
./configure
make
make install
启动:/usr/local/openresty/nginx/sbin/nginx -c conf/nginx.conf
以上是关于openresty 两种安装方式的主要内容,如果未能解决你的问题,请参考以下文章
非openresty方式安装Nginx + Lua + Redis 环境