摘要:軟件包版本,,系統安裝系統需要安裝必備的開發包,比如支持前往下載,版本可能已升級,以目前的版本為例將壓縮文件放到目錄下載并解壓,然后到安裝目錄,下同支持轉發組件注意如果提示可以或手動安裝,
軟件包版本:nginx-1.7.10.tar.gz , openssl-1.0.2a.tar.gz, pcre-8.35.tar.gz 系統: linux RHEL 6.5
nginx 安裝linux 系統需要安裝必備的開發包,比如 gcc,gcc-c++
openssl (支持 https)
前往 https://www.openssl.org/source/ 下載,openssl 版本可能已升級,以目前的版本為例
將壓縮文件放到 /opt/package/ 目錄
tar -zxvf openssl-1.0.2.tar.gz # 下載并解壓,然后 cd 到安裝目錄,下同
./config --prefix=/usr/local --openssldir=/usr/local/openssl make make test make install
pcre: (支持轉發組件)
./configure
make make install
nginx:
./configure --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-openssl=/opt/package/openssl-1.0.2a
make && make install
注意如果 ./configure 提示 error: the HTTP gzip module requires the zlib library... ,可以 yum -y install zlib-devel 或手動安裝 zlib-devel,如果不需要此功能,可以在 ./configure 加上--without-http_gzip_module
注意:--with-openssl=/usr/local/openssl 修改 openssl 壓縮包的的解壓目錄,我的測試機為/opt/package/openssl-1.0.2a
參考: 其它 nginx 常用編譯選項 開啟 http_realip_module 模塊
--with-http_realip_module : nginx 代理后獲取真實 ip, --with-http_stub_status_module --with-http_ssl_module :支持 https
啟動 nginx,
cd /usr/local/nginx/sbin ./nginx &
啟動不報錯說明 nginx已經正常運行
解決 error while loading shared libraries: libpcre.so.1的錯誤
/usr/local/webserver/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
解決方法:
ln -s /usr/local/lib/libpcre.so.1 /lib /lib64
其它 nginx 命令參考
nginx -t # 檢查配置文件語法是否正確 nginx -s reload #重新加載修改后的配置文件 nginx -V # 查看編譯參數 nignx -v # 查看版本nginx 自啟動
參考:
Linux環境下安裝Nginx+Pcre+OpenSSL
Nginx安裝
Websites with Nginx on Debian 7 (Wheezy)
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39142.html
摘要:為提供模塊,需要庫支持為提供功能為支持地址重寫功能確保已正確安裝在上面的基礎環境安裝中,我們已經安裝了,但是部分服務器上并沒有的安裝包,所以我們可以通過下載包自行編譯安裝。 一直以來我都通過網上的一些材料去搭建lnmp環境,通過直接yum安裝nginx mysql php等軟件。但是為了原生態的編譯安裝最新的軟件版本,我決定自己親手搭建lnmp環境,采用最新的nginx1.9.7(昨天...
摘要:安裝完成后,可以隨時更改的名稱在配置文件中使用的指令。啟用或禁用構建一個模塊來允許服務器使用方法。如需要需要增加支持的文件數量設置附加的參數,將用于在鏈接期間。 前言 安裝軟件列表 nginx-1.13.9 php-7.2.3 操作系統 阿里云esc centos 7.4 64位 前提條件 yum install -y gcc gcc-c++ openssl openssl-de...
摘要:安裝完成后,可以隨時更改的名稱在配置文件中使用的指令。啟用或禁用構建一個模塊來允許服務器使用方法。如需要需要增加支持的文件數量設置附加的參數,將用于在鏈接期間。 前言 安裝軟件列表 nginx-1.13.9 php-7.2.3 操作系統 阿里云esc centos 7.4 64位 前提條件 yum install -y gcc gcc-c++ openssl openssl-de...
閱讀 3344·2021-11-10 11:36
閱讀 3244·2021-10-08 10:21
閱讀 2841·2021-09-29 09:35
閱讀 2416·2021-09-22 16:06
閱讀 3962·2021-09-09 09:33
閱讀 1327·2019-08-30 15:44
閱讀 3171·2019-08-30 10:59
閱讀 2982·2019-08-29 15:32