二進位制下載部署Nginx

Dusk_Yun發表於2024-08-19

一、透過Nginx官網並採取二進位制方式部署

Nginx官網

二、具體步驟

image
image
image
image
image
image

[root@web01 yum.repos.d]# ll -d nginx.repo
-rw-r--r--. 1 root root 398 Aug 17 22:01 nginx.repo
[root@web01 yum.repos.d]# pwd
/etc/yum.repos.d

  • 接下來可以直接使用 yum -y install nginx 則是直接從官方下載的nginx

三、安裝步驟

第一步: 安裝nginx服務
[root@web01 ~]# yum -y install nginx

第二步: 配置Nginx

第三步: 啟動Nginx加入開機自動執行
[root@web01 ~]# systemctl start nginx
[root@web01 ~]# systemctl enable nginx

檢視Nginx服務狀態:
[root@web01 ~]# systemctl status nginx
[root@web01 ~]# netstat -tnulp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      20116/nginx: master 

過濾程序的方式檢視nginx是否執行
[root@web01 ~]# ps axu|grep nginx
root      20116  0.0  0.1  49072  1004 ?        Ss   16:03   0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx     20117  0.0  0.1  49460  1896 ?        S    16:03   0:00 nginx: worker process

最後一步: 開啟瀏覽器測試10.0.0.7

如果中途報錯可以在 [root@web01 ~]# tailf /var/log/nginx/error.log 該檔案中檢視錯誤日誌詳細

相關文章