您好,登錄后才能下訂單哦!
本篇內容主要講解“如何部署Nginx服務”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何部署Nginx服務”吧!
Nginx(“engine x”)是一個開源的,支持高性能、高并發的www服務和代理服務軟件。
由俄羅斯人Igor Sysoev開發,最初應用于俄羅斯大型網站www.rambler.ru上。
Nginx具有高并發、占用系統資源少等特性。
Nginx可以運行在UNIX、Linux、DSB、Mac OS X、Solaris及Windows等操作系統上。
支持高并發:能支持幾萬并發連接
資源消耗少:三萬并發連接下,開始10個線程消耗內存不到200MB。
可以做HTTP反向代理及加速緩存,即負載均衡功能,內置對RS節點服務器健康檢查功能
具備Squid等專業緩存軟件的緩存功能
支持異步網絡I/O事件模型
作為Web服務軟件
反向代理及負載均衡服務
前端業務數據緩存服務
使用Nginx運行HTML、JS、CSS、小圖片等靜態數據
Nginx結合FastCGI運行PHP等動態程序
Nginx結合Tomcat/Resin等支持Java動態程序
工作中,根據需求來選擇合適的業務服務軟件:
靜態業務:高并發場景,首選采用Nginx
動態業務:Nginx與Apache都可,建議Nginx
靜態+動態業務:推薦Nginx
安裝方法多種,本文使用編譯安裝方式。如果需要大規模部署,可將業務需求定制好rpm包,然后通過Ansible安裝。
查看當前系統版本:
cat /etc/redhat-release uname -r
結果:
CentOS release 6.10 (Final) 2.6.32-754.el6.x86_64
采用yum方式安裝pcre:
yum -y install pcre pcre-devel rpm -qa pcre pcre-devel
結果:
pcre-devel-7.8-7.el6.x86_64
pcre-7.8-7.el6.x86_64
檢查是否裝有openssl、openssl-devel:
rpm -qa openssl openssl-devel
結果:如果沒有,使用yum安裝
openssl-1.0.1e-57.el6.x86_64 openssl-devel-1.0.1e-57.el6.x86_64
創建nginx包存放目錄:
mkdir -p /app/nginx-1.8.1 mkdir -p /server/tools cd /server/tools/
下載nginx軟件包:
官方地址:www.nginx.rog
wget -q http://nginx.org/download/nginx-1.8.1.tar.gz
創建nginx用戶:
useradd nginx -s /sbin/nologin -M
解壓軟件包并進入解壓后的目錄:
tar xf nginx-1.8.1.tar.gz cd nginx-1.8.1
進行編譯:
編譯模塊可以通過./configure --help查看
./configure --user=nginx --group=nginx --prefix=/app/nginx-1.8.1/ --with-http_stub_status_module --with-http_ssl_module
安裝:
make make install
創建軟鏈接:方便使用以及版本升級
ln -s /app/nginx-1.8.1/ /app/nginx
啟動前測試:
/app/nginx/sbin/nginx -t
結果:
nginx: the configuration file /app/nginx-1.8.1//conf/nginx.conf syntax is oknginx: configuration file /app/nginx-1.8.1//conf/nginx.conf test is successful
啟動Nginx服務并檢查端口:
/app/nginx/sbin/nginx netstat -utpln | grep 80
結果:
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 13689/nginx
檢查Nginx啟動結果:以下內容代表啟動成功
curl 192.168.1.31
結果:
<!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h2>Welcome to nginx!</h2> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http://nginx.org/" rel="external nofollow" >nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/" rel="external nofollow" >nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html>
tree /app/nginx
/app/nginx ├── client_body_temp ├── conf #nginx配置文件目錄 │ ├── fastcgi.conf #fastcgi相關參數配置文件 │ ├── fastcgi.conf.default │ ├── fastcgi_params #fastcgi參數文件 │ ├── fastcgi_params.default │ ├── koi-utf │ ├── koi-win │ ├── mime.types #媒體類型 │ ├── mime.types.default │ ├── nginx.conf #Nginx主配置文件 │ ├── nginx.conf.default │ ├── scgi_params #scgi配置文件 │ ├── scgi_params.default │ ├── uwsgi_params #uwsgi配置文件 │ ├── uwsgi_params.default │ └── win-utf ├── fastcgi_temp #fastcgi臨時數據文件 ├── html #默認站點目錄 │ ├── 50x.html #錯誤頁面顯示文件 │ └── index.html #默認的站點首頁文件 ├── logs #默認日志路徑 │ ├── access.log #默認訪問日志文件 │ ├── error.log #默認錯誤日志文件 │ └── nginx.pid #Nginx的pid文件 ├── proxy_temp #臨時目錄 ├── sbin #Nginx命令目錄 │ ├── nginx #啟動命令 │ └── nginx.old ├── scgi_temp #臨時目錄 └── uwsgi_temp #臨時目錄 9 directories, 22 files
去注釋顯示配置文件:
egrep -v "#|^$" /app/nginx/conf/nginx.conf.default
結果:
worker_processes 1; #worker進程數量 events { #事件區塊開始 worker_connections 1024; #單worker進程支持的最大連接 } #事件區塊結束 http { #HTTP區塊開始 include mime.types; #支持的媒體類型庫 default_type application/octet-stream; #默認媒體類型 sendfile on; #開啟高效傳輸模式 keepalive_timeout 65; #連接超時 server { #server區塊開始 listen 80; #服務端口,默認80 server_name localhost; #域名主機名 location / { #location區塊開始 root html; #站點根目錄 index index.html index.htm; #默認首頁文件 } #location區塊結束 error_page 500 502 503 504 /50x.html;#對應狀態碼及回應 location = /50x.html { #location開始回應50x.html root html; #站點目錄為html } } } #HTTP區塊結束
注:server區塊和location區塊可以是多個。
到此,相信大家對“如何部署Nginx服務”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。