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

    #!/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
  • 相关阅读:
    vscode maven
    clojure + sumblime text SublimeREPL
    .zsh_history
    springboot-自动装配
    任务调度-Quartz
    springcloud alibaba
    canal与kafka的结合使用
    centos7安装Zookeeper
    centos7安装kafka
    vmware+centos7 设置静态ip
  • 原文地址:https://www.cnblogs.com/henrylinux/p/9931311.html
Copyright © 2011-2022 走看看