參考文檔: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 複製代碼