Nginx1.18部署
nginx-1.18.0部署
1. 部署前准備
/usr/sbin/groupadd www && /usr/sbin/useradd -g www www && ulimit -SHn 65535 && systemctl disable firewalld.service && systemctl stop firewalld.service
2. 安裝依賴程序
yum install -y wget gcc-c++ gcc openssl openssl-devel ncurses ncurses-devel gd gd-devel perl-CPAN
注:安裝依賴程序前,需檢查/etc/pki/rpm-gpg/目錄下是否有EPEL的認證文件RPM-GPG-KEY-EPEL-7,如果沒有此文件,需要下載,命令如下:
yum install -y wget && cd /etc/pki/rpm-gpg/ && wget http://10.0.22.16/epel/RPM-GPG-KEY-EPEL-7
3. 編譯安裝nginx
#注:若無法鏡像倉庫中文件,可先在本地下載,再上傳至服務器對應目錄。
mkdir -p /var/log/nginx /usr/local/nginx/vhosts/ && chmod +w /var/log/nginx && chown -R www:www /var/log/nginx /usr/local/nginx/vhosts/ && cd /tmp && wget http://去官網地址下載/Third-party/nginx-1.18.0/nginx-1.18.0.tar.gz && tar -zxvf nginx-1.18.0.tar.gz
cd /tmp && wget http://去官網地址下載/Third-party/nginx-1.18.0/openssl-1.1.1k.tar.gz && wget http://去官網地址下載/Third-party/nginx-1.18.0/headers-more-nginx-module-0.33.tar.gz && wget http://去官網地址下載/Third-party/nginx-1.18.0/pcre-8.44.tar.gz && tar -zxvf pcre-8.44.tar.gz && tar -zxvf openssl-1.1.1k.tar.gz && tar -zxvf headers-more-nginx-module-0.33.tar.gz
cd /tmp/nginx-1.18.0 && ./configure --user=www --group=www --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx --conf-path=/usr/local/nginx/conf/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_auth_request_module --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gzip_static_module --with-pcre=/tmp/pcre-8.44 --add-module=/tmp/headers-more-nginx-module-0.33 --with-openssl=/tmp/openssl-1.1.1k --with-http_gunzip_module --with-http_sub_module
make && make install
4. 配置啟動程序及配置文件
cd /etc/init.d && wget http://去官網地址下載/Third-party/nginx-1.18.0/nginx && chmod +x /etc/init.d/nginx && cd /usr/local/nginx/conf && mv nginx.conf nginx.conf.bak && wget http://去官網地址下載/Third-party/nginx-1.18.0/nginx.conf && service nginx start
5. 部署完成后的說明
完成部署后,根據nginx.conf配置文件中的信息,沒有配置web端口信息。如需驗證部署結果,需要取消server部分的注釋,並修改root路徑,修改為/usr/local/nginx/html,或者根據實際需求修改。修改nginx.conf前,需備份此文件。如下截圖:

完成操作后,檢查nginx配置文件是否正確,最后重啟nginx應用。
/usr/sbin/nginx -t #檢查配置文件
service nginx restart #重啟nginx應用
curl http://localhost:80 #檢查nginx啟動情況
