Centos7 安裝 Nginx

尘世一小书虫發表於2024-11-09

Centos7 安裝 Nginx

step1:CentOS 7 更換軟體倉庫

以阿里雲的軟體倉庫 https://developer.aliyun.com/mirror/為例

yum repolist

開啟阿里雲的映象網站https://developer.aliyun.com/mirror/

複製命令到終端上執行

CentOS 7

wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

step2:安裝環境

我這裡是Centos7.0作為安裝環境,除此之外還要安裝gcc,pcre等軟體,都是一個命令就安裝的。

gcc

  安裝nginx需要先將官網下載的原始碼進行編譯,編譯依賴gcc環境,如果沒有gcc環境,需要安裝gcc。

yum install gcc-c++
PCRE

PCRE(Perl Compatible Regular Expressions)是一個Perl庫,包括 perl 相容的正規表示式庫。nginx的http模組使用pcre來解析正規表示式,所以需要在linux上安裝pcre庫。

yum install -y pcre pcre-devel

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

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

官網下載nginx-1.9.9.tar.gz安裝包

wget http://nginx.org/download/nginx-1.9.9.tar.gz

解壓

tar -zxvf nginx-1.9.9.tar.gz

查詢安裝位置

whereis nginx

step3:編譯&執行

編譯

 ./configure && make && make install

執行

 cd  /usr/local/nginx/sbin
./nginx

檢查程序

ps aux|grep nginx

root 6034 0.0 0.0 24896 772 ? Ss 12:04 0:00 nginx: master process ./nginx
nobody 6035 0.0 0.0 27392 1520 ? S 12:04 0:00 nginx: worker process
root 6045 0.0 0.0 112824 988 pts/1 S+ 12:04 0:00 grep --color=auto nginx

step4:關閉防火牆測試

systemctl stop firewalld

step5:外部瀏覽器測試

img

相關文章