本文主要是介绍nginx自动安装脚本(nginx-1.20.1.tar.gz),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#! /bin/bash
#安装环境
yum install -y gcc zlib zlib-devel pcre pcre-devel openssl openssl-devel wget
#到/opt/下
cd /opt/
wget http://nginx.org/download/nginx-1.20.1.tar.gz
#解压
gunzip nginx-1.20.1.tar.gz
#解压
tar -xvf nginx-1.20.1.tar
#到解压目录下
cd nginx-1.20.1
#创建用户组
useradd nginx -s /sbin/nologin
#编译参数
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_v2_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module --with-http_flv_module --with-stream --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/usr/local/nginx/conf/nginx.conf
make && make install
nginx
yum install -y net-tools
netstat -nlpt |grep nginx
这篇关于nginx自动安装脚本(nginx-1.20.1.tar.gz)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!