首頁  >  文章  >  運維  >  centos7編譯安裝nginx1.16.0的方法是什麼

centos7編譯安裝nginx1.16.0的方法是什麼

WBOY
WBOY轉載
2023-05-12 11:58:051070瀏覽

一、安裝依賴套件

yum install -y gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel

依賴套件說明:

1、編譯依賴gcc 環境,所以需要:gcc gcc-c ;

#2、PCRE(Perl Compatible Regular Expressions) 是一個Perl函式庫,包括perl 相容的正規表示式函式庫。 nginx 的http 模組使用pcre 來解析正規表示式,所以需要在linux 上安裝pcre 函式庫,pcre-devel 是使用pcre 開發的二次開發函式庫,所以需要:pcre pcre-devel ;

3 、zlib 函式庫提供了許多壓縮和解壓縮的方式, nginx 使用zlib 對http 套件的內容進行gzip ,所以需要在Centos 上安裝zlib 函式庫,所以需要:zlib zlib-devel ;

#4、OpenSSL是一個強大的安全通訊端層密碼庫,囊括主要的密碼演算法、常用的金鑰和憑證封裝管理功能及SSL 協議,並提供豐富的應用程式供測試或其它目的使用。 nginx 不僅支援http 協議,也支援https(也就是在ssl協定上傳輸http),所以需要在Centos 安裝OpenSSL 函式庫,所以需要:openssl openssl-devel ;

##二、從官網下載安裝套件

wget https://nginx.org/download/nginx-1.16.0.tar.gz

#三、解壓縮並安裝

tar zxvf nginx-1.16.0.tar.gz
cd nginx-1.16.0
./configure --prefix=/usr/local/nginx
make && make install

四、測試安裝是否成功

[root@localhost ~]# nginx -V
nginx version: nginx/1.16.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) 
configure arguments: --prefix=/usr/local/nginx

五、啟動nginx服務

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

#六、驗證服務是否啟動成功

[root@localhost sbin]# netstat -ntlp | grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      349/nginx: master

2、新增nginx服務

vi

  將以下內容插入:

[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

八、以服務的方式啟動nginx

pkill nginx
systemctl start nginx

#9、檢視服務是否啟動

[root@localhost sbin]# systemctl status nginx
● nginx.service - nginx
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
   Active: active (running) since Mon 2019-04-29 23:19:39 EDT; 18min ago
  Process: 348 ExecStart=/usr/local/nginx/sbin/nginx (code=exited, status=0/SUCCESS)
 Main PID: 349 (nginx)
    Tasks: 2
   Memory: 976.0K
   CGroup: /system.slice/nginx.service
           ├─349 nginx: master process /usr/local/nginx/sbin/nginx
           └─350 nginx: worker process

Apr 29 23:19:39 localhost.localdomain systemd[1]: Starting nginx...
Apr 29 23:19:39 localhost.localdomain systemd[1]: Started nginx.
[root@localhost sbin]# netstat -ntlp | grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      349/nginx: master p

十、設定nginx服務自動啟動######
[root@localhost sbin]# systemctl enable nginx
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.

以上是centos7編譯安裝nginx1.16.0的方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除