nginx 安裝記錄

2021-08-08 03:27:51 字數 2779 閱讀 3042

gcc

yum install gcc-c++

pcre

pcre(perl compatible regular expressions)是乙個perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用pcre來解析正規表示式,所以需要在linux上安裝pcre庫。

注:pcre-devel是使用pcre開發的乙個二次開發庫。nginx也需要此庫。

yum install -y pcre pcre-devel

zlib

zlib庫提供了很多種壓縮和解壓縮的方式,nginx使用zlib對http包的內容進行gzip,所以需要在linux上安裝zlib庫。

yum install -y zlib zlib-devel

openssl

openssl 是乙個強大的安全套接字層密碼庫,囊括主要的密碼演算法、常用的金鑰和證書封裝管理功能及ssl協議,並提供豐富的應用程式供測試或其它目的使用。

nginx不僅支援http協議,還支援https(即在ssl協議上傳輸http),所以需要在linux安裝openssl庫。

yum install -y openssl openssl-devel

wget

tar zvxf tengine.tar.gz

./configure --prefix=/opt/nginx (安裝到/opt/nginx目錄下)

make && make install

cd /opt/nginx

./sbin/nginx -t (檢測配置檔案)

如果顯示下面資訊,即表示配置沒問題

nginx: the configuration file /opt/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /opt/nginx/conf/nginx.conf test is successful

[root@centos ~]# ./sbin/nginx 

[root@centos ~]# ps au|grep nginx

如果顯以類似下面的資訊,即表示nginx已經啟動

root 2013 0.0 0.0 103156 856 pts/0 s+ 03:22 0:00 grep nginx

詳情請看 :

nginx安裝記錄

第二步 配置nginx安裝所需的環境 第三步 解壓nginx壓縮包並安裝 第四步 編譯安裝nginx 第五步 啟動nginx 第五步 nginx配置 0.tar.gzyum install y gcc c nginx的rewrite模組和http核心模組會使用到pcre正規表示式語法。這裡需要安裝兩...

Nginx和Tomcat安裝記錄

2.解壓縮nginx,執行如下命令 cd nginx 1.7.7 configure 3.configure出錯,需要安裝pcre 5.在 usr local下解壓縮並編譯安裝 configure prefix usr local pcre make make install 6.重新嘗試安裝 ng...

nginx安裝過程記錄

安裝環境 樹莓派3b ubuntu16.04 具體步驟 解壓壓縮包 建立安裝路徑 opt nginx 編譯安裝 cd tmp nginx 1.17.2 configure prefix opt nginx 遇到問題 pcre庫不存在 configure prefix opt nginx with p...