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

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

WBOY
發布: 2023-05-12 11:58:05
轉載
1115 人瀏覽過

一、安裝依賴套件

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板