zoukankan      html  css  js  c++  java
  • linux一键安装nginx脚本

    #!/bin/sh
    echo "----------------------------------start install nginx -----------------------------"
    yum install -y gcc-c++ zlib zlib-devel openssl openssl--devel pcre pcre-devel
    if [ 'grep "nginx" /etc/passwd | wc -l' ]; then
    echo "adding user nginx"
    groupadd nginx
    useradd -s /sbin/nologin -M -g nginx nginx
    else
    echo "user nginx exsits"
    fi
    
    echo "-----------------------------------downloading nginx-------------------------------"
    wget http://nginx.org/download/nginx-1.9.5.tar.gz
    tar -xvf nginx-1.9.5.tar.gz
    cd nginx-1.9.5
    
    echo "------------------------------------configuring nginx,plz wait----------------------"
    ./configure --prefix=/usr/local/nginx 
    
    if [ $? -ne 0 ];then
    echo "configure failed ,please check it out!"
    else
    echo "make nginx, please wait for 20 minutes"
    make
    fi
    
    if [ $? -ne 0 ];then
    echo "make failed ,please check it out!"
    else
    echo "install nginx, please wait for 20 minutes"
    make install
    fi
    
    chown -R nginx.nginx /usr/local/nginx
    ln -s /lib64/libpcre.so.0.0.1 /lib64/libpcre.so.1
    /usr/local/nginx/sbin/nginx
    iptables -I INPUT 3 -s 0.0.0.0/0 -p tcp --dport 80 -j ACCEPT
  • 相关阅读:
    POJ 3411 Paid Roads(DFS)
    POJ 1699 Best Sequence(DFS)
    Codeforces Round #191 (Div. 2)
    Windows && Linux 搭建python开发环境
    zabbix 源码编译安装
    智能运维基础设施
    Redis
    ubuntu16.04 安装 mysql
    Python必须知道的基础语法
    ubuntu && CentOS && RedHat 离线安装docker
  • 原文地址:https://www.cnblogs.com/henrylinux/p/9931302.html
Copyright © 2011-2022 走看看