1. 程式人生 > >suse 11 sp3環境下安裝nginx-1.12.1

suse 11 sp3環境下安裝nginx-1.12.1

suse下安裝nginx-1.12.1 1、 mkdir /datas cd /datas/ tar -zxvf nginx-1.12.1.tar.gz ./configure –prefix=/datas/nginx 報錯 ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre= option. 原因是缺少–with-pcre= 安裝pcre tar –zxvf pcre ./configure --prefix=/datas/pcre make make install

cd nginx-1.12.1 ./configure –prefix=/datas/nginx 還是報上個錯誤 原因是缺少–with-pcre= 執行 cd nginx-1.12.1 ./configure --prefix=/datas/nginx --with-pcre=/datas/pcre 然後 Make 報錯 make[1]: *** [/datas/pcre/Makefile] Error 127 原因是Makefile檔案在pcre-8.41原始檔裡面 make clean 再執行 ./configure --prefix=/datas/nginx --with-pcre=/datas/pcre-8.41 解決 cd nginx-1.12.1 make make install 完成安裝