Ubuntu 16.04 설치 설정 Nginx 1.12.2

3843 단어 NginxUbuntu
Nginx 의존 라 이브 러 리 설치
gcc g + + 의존 라 이브 러 리 설치
apt-get update
apt-get install build-essential
apt-get install libtool

pcre 의존 라 이브 러 리 설치
sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev 

zlib 의존 라 이브 러 리 설치
apt-get install zlib1g-dev

ssl 의존 라 이브 러 리 설치
apt-get install openssl

Nginx 설치
#      :
wget http://nginx.org/download/nginx-1.12.2.tar.gz
#  :
tar -zxvf nginx-1.12.2.tar.gz
#      :
cd nginx-1.12.2
#  :
./configure --prefix=/usr/local/nginx 
#  nginx:
make
  :       ,  “pcre.h No such file or directory”,    :http://stackoverflow.com/questions/22555561/error-building-fatal-error-pcre-h-no-such-file-or-directory
     libpcre3-dev,   :sudo apt-get install libpcre3-dev
#  nginx:
sudo make install
#  nginx:
sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  :-c          ,    ,nginx              ,     -h      。
#  nginx  :
ps -ef|grep nginx

Nginx 서비스 추가
vim /lib/systemd/system/nginx.service

다음 내용 을 추가 합 니 다:
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
PrivateTmp=true
Restart=on-failure
RestartSec=20s
[Install]
WantedBy=multi-user.target

Nginx 설정 시작
시작: systemctl start nginx
상태 보기: systemctl status nginx
시스템 기본 시작 으로 설정: systemctl enable nginx

좋은 웹페이지 즐겨찾기