CentOS安裝OpenResty

參考文檔:openresty.org/cn/installa…html

OpenResty的安裝過程比較簡單,官方文檔也已經講得很詳細了,這裏主要是作一下安裝記錄nginx

一、安裝

# 下載
wget https://openresty.org/download/openresty-1.13.6.2.tar.gz
# 安裝依賴庫
yum install pcre-devel openssl-devel gcc curl
# 解壓
tar -zxvf openresty-1.13.6.2.tar.gz
cd openresty-1.13.6.2/
# 配置(檢測環境、生成Makefile、爲編譯作準備)
./configure
# 編譯
make
# 安裝
make install
複製代碼

主要注意兩點:redis

  • 安裝前須要準備依賴庫shell

  • ./configurevim

    默認 --prefix=/usr/local/openresty,程序會被安裝到/usr/local/openresty目錄bash

    能夠本身指定各類選項,好比markdown

    ./configure --prefix=/opt/openresty \
                --with-luajit \
                --without-http_redis2_module \
                --with-http_iconv_module \
                --with-http_postgres_module
    複製代碼

    使用 ./configure --help 查看更多的選項curl

    ./configure運行出錯能夠到build/nginx-1.13.6.2/objs/autoconf.err 查看oop

二、啓動

配置環境變量
shell> vim /etc/profile
複製代碼

添加一行post

export PATH=/usr/local/openresty/bin:/usr/local/openresty/nginx/sbin:$PATH
複製代碼
shell> source /etc/profile
複製代碼
啓動
shell> nginx -c /usr/local/openresty/nginx/conf/nginx.conf
複製代碼
從新加載配置
shell> nginx -s reload
複製代碼

三、測試

相關文章
相關標籤/搜索