首页 > 系统相关 >nginx 安装

nginx 安装

时间:2023-12-26 19:35:10浏览次数:42  
标签:+++ -- ++++ nginx install path 安装

#!/bin/bash
##############################################################
# File Name: install_nginx.sh
# Version: V1.0
# Author: junwang
# Organization: 
# Created Time : 2021-04-13 17:12:54
# Description:
##############################################################
tools_path=/server/tools
install_path=/web
yum install -y gcc gcc-c++ make libxml2 libxml2 libxslt libxml2-dev libxslt-devel gd-devel GeoIP GeoIP-devel GeoIP-data pcre-devel  openssl-devel wget
useradd www -s /sbin/nologin/ -M
mkdir	$tools_path  -p
mkdir	$install_path  -p
cd $tools_path
wget http://nginx.org/download/nginx-1.24.0.tar.gz
if [ $? -ne 0  ]
then
    echo Nginx download failed
    exit 1
fi
tar xf nginx-1.24.0.tar.gz && cd nginx-1.24.0/
./configure --prefix=/web/nginx-24 --user=www --group=www --with-http_ssl_module --with-http_stub_status_module  --with-stream --with-http_gzip_static_module --with-stream_ssl_module
make && make install 
if [ $? -eq 0  ]
then
    echo -e "Nginx installed successfully \n
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##############################################@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@#====*@@@@@@@@@@*===#@@@@@*============#@@@@@@@===#@@@*==*@@@@@@@@@@#===*#@#===*#@@@@@@@@@#*===#@@@@@@
@@@@@@@@@=++++++*@@@@@@@#++++*@@@@=++++======++++=@@@@@#+++=@@*++++@@@@@@@@*++++++=@#++++++*#@@@#*=+++++#@@@@@@
@@@@@@@@@=++++++++*#@@@@#++++*@@#++++*@@@@@@@@#=++=#@@@#+++*@@*++++@@@@@#=++++++++=@@@#=+++++=*=+++++=#@@@@@@@@
@@@@@@@@@=+++=@#=+++=#@@#++++*@=+++=#@@@########****#@@@*###@@*++++@@@#=+++=#@=+++=@@@@@@#=++++++++*@@@@@@@@@@@
@@@@@@@@@=+++=@@@#=+++=##++++*@*++++#@@=++++++++++++#@@#+++*@@*++++##=+++=#@@@=+++=@@@@@@*=++++++++*#@@@@@@@@@@
@@@@@@@@@=+++=@@@@@#=++++++++*@@#=+++*@@@#@@@#=+++=@@@@#+++*@@*++++++++*#@@@@@=+++=@@@*=+++++=*=+++++=*@@@@@@@@
@@@@@@@@@=+++=@@@@@@@#*++++++*@@@@*++++======++++#@@@@@#+++*@@*++++++*@@@@@@@@=+++=@#+++++=*@@@@@*=+++++#@@@@@@
@@@@@@@@@#*=*#@@@@@@@@@@**==*@@@@@@#***======***@@@@@@@@*=*#@@@****#@@@@@@@@@@#***#@@*==*#@@@@@@@@@#*==*#@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
"
else
    echo "Nginx installation failed"
   exit 1
fi
#ln -s $install_path/nginx-12.2 $install_path/nginx
/web/nginx-24/nginx/sbin/nginx
ps -ef|grep nginx
cd $tools_path  && rm -rf *

标签:+++,--,++++,nginx,install,path,安装
From: https://www.cnblogs.com/ejjw/p/17929146.html

相关文章

  • rabbitmq安装
    #!/bin/bash###############################################################FileName:install_rabbit.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1411:12:54#Description:##############################################......
  • redis安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1417:12:54#Description:###############################################......
  • JDK1.8安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • kafka安装
    单节点kafka安装#!/bin/bash###############################################################FileName:install_kafka.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1417:12:54#Description:###################################......
  • emqx安装
    #!/bin/bash###############################################################FileName:install_emqx.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:################################################......
  • cockroach安装
    `#!/bin/bash##############################################################FileName:install_cockroach.shVersion:V1.0Author:junwangOrganization:CreatedTime:2021-04-1317:12:54Description:#######################################################......
  • elasticsearch安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • 【VMware】虚拟机安装centos7安装教程(秒看秒懂)
    一、Centos7背景简介          CentOS7是一个企业级的Linux发行版本,它源于RedHat免费公开的源代码进行再发行。内核更新至3.10.0、支持Linux容器、支持OpenVMwareTools及3D图像即装即用、支持OpenJDK-7作为缺省JDK、支持内核空间内的iSCSI及FCoE、支持PTPv2等功能......
  • Nginx常用配置
    项目配置示例HTTP:userroot;worker_processes1;events{worker_connections1024;}http{includemime.types;default_typeapplication/octet-stream;sendfileon;#tcp_nopushon;#keepalive_timeout0;keepa......
  • 【已解决】WordPress安装插件提示:需要访问您网页服务器的权限
    前一段时间把workpress做了迁移后,发现安装插件的时候会给出如下提示: 经过百度查询找到解决方法,修改 /var/www/html/wp-config.php文件,增加字段:define('FS_METHOD','direct');如下图 之后重启服务:systemctlrestarthttpd,即可正常安装插件了,如下 ......