nginx服務部署

2020-10-11 00:00:06

nginx服務部署

nginx服務概念地址:
首先,新建虛擬機器器,我們預設是使用CentOS-7-x86_64-DVD-1511的映象
映象地址:
連結:https://pan.baidu.com/s/1Myl_GXnUg7t3OR01mCuMrQ
提取碼:1511

①安裝虛擬機器器,設定ip,yum源

安裝虛擬機器器,設定ip,設定yum源地址教學

②修改主機名(主從資料庫同理)

這裡我們設定主機名為nginx

[root@localhost /]# hostnamectl set-hostname nginx (修改主機名)
[root@localhost /]# bash (重新整理shell命令列)
[root@mysql0 /]# su - (重新登入)
[root@mysql0 ~]# hostnamectl (檢視主機資訊)

在這裡插入圖片描述

③關閉防火牆和SELinux服務

防火牆和SELinux開啟關閉教學

[root@nginx ~]# setenforce 0 (設定關閉 1開啟0關閉)
[root@nginx ~]# systemctl stop firewalld (關閉防火牆)
[root@nginx ~]# getenforce (檢視程序 Enforcing開啟Permissive關閉)
Permissive

④安裝設定基礎服務

[root@nginx src]# yum install gcc gcc-c++ openssl-devel zlib-devel zlib pcre-devel -y
(安裝編譯器)
[root@nginx src]# groupadd -g 1001 nginx
(建立指定所屬組)
[root@nginx src]# useradd -u 900 nginx -g nginx -s /sbin/nologin
(建立指定使用者組)
[root@nginx src]# tail -l /etc/passwd   (檢視資訊)

在這裡插入圖片描述

⑤安裝設定nginx服務

事先用檔案傳輸工具(博主用的是xftp)將nginx安裝包放到/usr/local/src目錄下
nginx安裝包連結(這裡我們用的版本為nginx-1.12.2):
連結:https://pan.baidu.com/s/1GcIyTUdvjiohFIKvQQ2UrQ
提取碼:1122

[root@nginx ~]# cd /usr/local/src    
[root@nginx src]# ls
nginx-1.12.2.tar.gz
[root@nginx src]# tar -zxvf nginx-1.12.2.tar.gz (解壓安裝包)
[root@nginx src]# cd nginx-1.12.2/
執行這個超長命令
[root@nginx nginx-1.12.2]# ./configure --prefix=/usr/local/nginx --with-http_dav_module \
> --with-http_stub_status_module --with-http_addition_module \
> --with-http_sub_module --with-http_flv_module --with-http_mp4_module \
> --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx
(此處省略執行資訊,如果沒有報錯,可進行編譯安裝)
[root@nginx src]# make && make install  (編譯安裝)
[root@nginx src]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/  (建立軟連線)
[root@nginx src]# nginx -t (檢視)

在這裡插入圖片描述

[root@nginx nginx-1.12.2]# yum -y install net-tools  (安裝該工具)
[root@nginx src]# nginx
[root@nginx src]# netstat -ntpl (檢視埠資訊,有80埠,瀏覽器連結本虛擬機器器ip ,出現歡迎介面說明成功)
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      5171/nginx: master  
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1096/sshd           
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      2236/master         
tcp6       0      0 :::22                   :::*                    LISTEN      1096/sshd           
tcp6       0      0 ::1:25                  :::*                    LISTEN      2236/master         

在這裡插入圖片描述