您必须将这些库
perl 5.6.1+
libreadline
libpcre
libssl
安装在您的电脑之中。
对于 Linux来说, 您需要确认使用 ldconfig 命令,让其在您的系统环境路径中能找到它们。
CentOS 7 安装OpenResty所需依赖:
[[email protected] ~]# yum -y install readline-devel pcre-devel openssl-devel gcc
下载:
[[email protected] ~]# wget https://openresty.org/download/openresty-VERSION.tar.gz
[[email protected] ~]# tar xzvf ngx_openresty-VERSION.tar.gz
编译安装:
然后在进入 ngx_openresty-VERSION/
目录, 然后输入以下命令配置:
./configure --prefix=/root/openresty
默认, --prefix=/usr/local/openresty
程序会被安装到/usr/local/openresty目录。
./configure \
--with-http_ssl_module \
--with-zlib=/root/zlib-1.2.8 \ #源码路径
--with-http_gzip_static_module \
--with-pcre=/root/pcre-8.39 \
--with-pcre-jit \
--with-http_flv_module \
--with-http_sub_module \
--with-http_stub_status_module \
--with-openssl=/root/openssl-1.0.2j \
--with-http_gunzip_module \
gmake
gmake install
或
make -j 4 && make install
试着使用 ./configure --help 查看更多的选项。
设置环境变量及文件软链接:
配置用户及组:
验证:
[[email protected] nginx]# nginx
[[email protected] nginx]# curl -I localhost
HTTP/1.1 200 OK
Nginx开机自动启动脚本:
/usr/lib/systemd/system/nginx.service
[[email protected] src]# systemctl status nginx
[[email protected] src]# systemctl enable nginx
[[email protected] src]# systemctl start nginx
[[email protected] src]# systemctl reload nginx