ngnix 安裝筆記

2021-08-21 09:46:17 字數 1060 閱讀 3278

yum update 更新系統類庫

yum install gcc++ 安裝ngnix 依賴包

安裝pcre庫

cd /usr/local/

wget

tar -zxvf pcre-8.40.tar.gz

cd pcre-8.40

./configure

make

make install

安裝zlib庫

cd /usr/local/ 

wget

tar -zxvf zlib-1.2.8.tar.gz

cd zlib-1.2.8

./configure

make

make install

安裝ssl

cd /usr/local/

wget

tar -zxvf openssl-1.0.1j.tar.gz

./config

make

make install

安裝nginx

cd /usr/local/

wget

tar -zxvf nginx-1.8.0.tar.gz

./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre-8.40 --with-zlib=/usr/local/zlib-1.2.8

make

make install

啟動/usr/local/nginx/sbin/nginx

檢查是否啟動成功:

開啟瀏覽器訪問此機器的 ip,如果瀏覽器出現 welcome to nginx! 則表示 nginx 已經安裝並執行成功。

部分命令如下:

重啟:/usr/local/nginx/sbin/nginx –s reload

停止:/usr/local/nginx/sbin/nginx –s stop

測試配置檔案是否正常:

/usr/local/nginx/sbin/nginx –t

強制關閉:

pkill nginx

Ngnix學習筆記

一.ngnix介紹 1.概念 乙個強大的web伺服器軟體.2.功能 1 處理高併發的http請求.2 作為反向 伺服器來進行負載均衡.3 資料壓縮和解壓縮處理 3.優勢 高效能,輕量級,記憶體消耗少,強大的負載均衡能力等.二.master worker程序 ngnix啟動後,在系統中以daemon的...

ngnix的安裝小記

nginx安裝手冊 nginx是c語言開發,建議在linux上執行,本教程使用centos6.5作為安裝環境。n gcc n pcre pcre perlcompatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用p...

ngnix 系列一 安裝

安裝準備 nginx依賴於pcre庫,要先安裝pcre yum install pcre pcre devel cd usr local src wget tar zxvfnginx 1.4.2.tar.gz cd nginx 1.4.2 configure prefix usr local ngi...