CentOS 7 설치 Nginx - 1.16.1

1536 단어 nginx
관련 의존 패키지 설치:
yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zlib-devel openssl openssl-devel

1. 설치 팩 다운로드:
wget http://nginx.org/download/nginx-1.16.1.tar.gz

2. nginx 사용자 만 들 기:
useradd nginx

3. 스트레스 해소:
tar zxvf nginx-1.16.1.tar.gz

4. 컴 파일:
cd nginx-1.16.1
./configure --user=nginx  --prefix=/usr/local/nginx

5. 설치:
make & make install

압축 해제 가 완 료 된 일부 디 렉 터 리 와 파일 에 대해 간단 한 소 개 를 합 니 다.
src       Nginx     ;
man       Nginx     ;
html         html  。      Nginx        ,            
  ,      ;
conf        Nginx        ,  Nginx          ;
auto             , configure      ;
configure     Nginx         。  configure           :
      ,          C  ;           Makefile  。

6. 자동 시작 설정: 디 렉 터 리 / usr / lib / systemd / system 에서 파일 nginx. service 를 만 듭 니 다. 파일 내용 은 다음 과 같 습 니 다.
[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

7. 시동 설정:
systemctl enable nginx

시작 Nginx:
   systemctl start nginx

Nginx 정지:
   systemctl stop nginx

Nginx 다시 시작:
   systemctl reload nginx

좋은 웹페이지 즐겨찾기