ubuntu14.04에nginx1.10.1 설치

2341 단어
환경: 텐센트 클라우드 ubuntu 14.04 64비트 단계: 1:
 
$ cd pcre-8.39
$ ./configure
 
configure: error: You need a C++ compiler for C++ support.
 :
sudo apt-get install build-essential
$ wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
$ tar -zxf pcre-8.39.tar.gz
$ cd pcre-8.39
$ ./configure
$ make
$ sudo make install

이:
$ wget http://zlib.net/zlib-1.2.8.tar.gz
$ tar -zxf zlib-1.2.8.tar.gz
$ cd zlib-1.2.8
$ ./configure
$ make
$ sudo make install

$ wget http://www.openssl.org/source/openssl-1.0.2f.tar.gz
$ tar -zxf openssl-1.0.2f.tar.gz
$ cd openssl-1.0.2f
$ ./config
$ make

 , 
sudo apt-get install openssl libssl-dev

$ sudo make install

$ wget http://nginx.org/download/nginx-1.10.1.tar.gz
$ tar zxf nginx-1.10.1.tar.gz
$ cd nginx-1.10.1
./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-stream --with-stream_ssl_module --with-http_flv_module --with-http_mp4_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre=/usr/local/pcre-8.39 --with-zlib=/usr/local/zlib-1.2.8
make
sudo make install
  • nginx를 시작합니다
  • /usr/local/nginx/sbin/nginx -v
    nginx version: nginx/1.10.1
    
     :
    sudo vi /etc/nginx/nginx.conf
    
    /usr/local/nginx/sbin/nginx
    하면, 만약, 만약...
    useradd -s /sbin/nologin -M nginx
    id nginx
    

    uid=1000(nginx)gid=1000(nginx) 그룹=1000(nginx)
    만약nginx: [emerg] mkdir ()'/var/tmp/nginx/client/'failed (2: No such file or directory) 다음 두 줄을 실행합니다.
    cd /var/tmp/
    mkdir -p /var/tmp/nginx/{client,proxy,fastcgi,uwsgi,scgi}
    

    다시 한 번, 아무런 힌트도 없이 성공을 표시한다/usr/local/nginx/sbin/nginx

    좋은 웹페이지 즐겨찾기