nginx 컴 파일 및 시작 스 크 립 트

1724 단어
Nginx 다운로드 주소
  • CentOS7.4
  • #!/bin/bash
    yum -y install pcre pcre-devel openssl openssl-devel gcc gcc-c++ wget
    wget http://nginx.org/download/nginx-1.8.1.tar.gz
    tar -xzf nginx-1.8.1.tar.gz -C /usr/src/ && cd /usr/src/nginx-1.8.1
    useradd -s /sbin/nologin www
    ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_stub_status_module
    make && make install
    #    
    /usr/local/nginx/sbin/nginx -t 
    firewall-cmd --add-port=80/tcp --permanent
    firewall--cmd --reload
    #     
    /usr/local/nginx/sbin/nginx
    ps -ef | grep nginx
    echo "nginx instlled"
    
  • Ubuntu18.04
  • apt update
    #    :gcc、g++   
    apt install build-essential libtool
    #   pcre   (http://www.pcre.org/)
    apt install libpcre3 libpcre3-dev
    #   zlib   (http://www.zlib.net)
    apt install zlib1g-dev
    apt install openssl
    wget http://nginx.org/download/nginx-1.16.0.tar.gz
    cd nginx-1.16.0
    ./configure --prefix=/usr/local/nginx
    make && make install
    

    Nginx 의 systemd 시작 스 크 립 트 를 작성 하여 / lib / systemd / system / 디 렉 터 리 에 스 크 립 트 를 놓 습 니 다.
    [Unit]
    Description=nginx - high performance web server
    Documentation=http://nginx.org/en/docs
    #After              
    After=network.target remote-fs.target nss-lookup.target
    [Service]
    Type=forking
    PIDFile=/usr/local/nginx/logs/nginx.pid
    #ExecStartPre     ExecStart           ,                    
    ExecStartPre=/usr/local/nginx/sbin/nginx -t
    #ExecStart      Nginx  
    ExecStart=/usr/local/nginx/sbin/nginx
    #ExecReload              
    ExecReload=/bin/kill -s HUP $MAINPID
    #ExecStop      Nginx        
    ExecStop=/bin/kill -s QUIT $MAINPID
    PrivateTmp=True
    [Install]
    WantedBy=multi-user.target
    
    

    좋은 웹페이지 즐겨찾기