安装包准备
准备好openresty源码包:
/opt/ngx_openresty-1.9.3.2.tar.gz
解压
执行以下命令解压安装包:
cd /opt
tar zxvf ngx_openresty-1.9.3.2.tar.gz
编译安装
执行以下命令安装编译所需的依赖:
yum install -y pcre-devel openssl-devel
执行以下命令编译安装openresty:
mkdir yliyun
cd ngx_openresty-1.9.3.2
./configure --prefix=/opt/yliyun/openresty
make
make install
openresty就成功安装到/opt/yliyun/openresty了