1. 程式人生 > >centos7.0安裝OpenResty

centos7.0安裝OpenResty

without 程序 2.3 -- ups 查看 htm scrip tar.gz

查看系統版本
[[email protected] redis-3.2.9]# cat /etc/system-release
CentOS Linux release 7.3.1611 (Core)
下載OpenResty,下載地址:https://openresty.org/cn/download.html 或者使用命令安裝
mkdir -p /data/setupsoft
cd /data/setupsoft
wget https://openresty.org/download/openresty-1.11.2.3.tar.gz
#解壓openresty
tar -zxvf openresty-1.11
.2.3.tar.gz #進入解壓後的文件夾 cd openresty-1.11.2.3 ./configure make j2 make install

編譯出錯,依次出錯報找不到如下對應的庫,安裝命令如下

yum install gcc
yum -y install pcre-devel
yum install openssl openssl-devel -y
註意 默認, --prefix=/usr/local/openresty 程序會被安裝到/usr/local/openresty目錄 您可以指定各種選項,比如
./configure --prefix=/opt/openresty \ --with-luajit \ --without-http_redis2_module \ --with-http_iconv_module \ --with-http_postgres_module
試著使用 ./configure --help 查看更多的選項 配置文件(./configure script)運行出錯可以到 build/nginx-VERSION/objs/autoconf.err 找到。 VERSION 的地方必須與OpenResty版本號相對應

centos7.0安裝OpenResty