1. 환경변수: Linux: Centos6.5, Nginx:1.6.3
2. Nginx 다운로드, 다운로드 주소: wget http://nginx.org /download/nginx-1.6.3.tar.gz
3. 종속성 설치
yum install pcre pcre-devel openssl openssl-devel -y
4. Nginx 사용자 및 그룹 생성
groupadd nginx
useradd nginx - s /sbin/nologin -M -g nginx
5. Nginx 압축 풀기
tar xf nginx-1.6.3.tar.gz
cd nginx-1.6.3
6. 소프트웨어 컴파일
./configure
-- user=nginx
--group=nginx
--prefix=/application/nginx1.6.3
--with-http_stub_status_module
--with-http_ssl_module
7. 소프트웨어 설치
make && make install
8. 소프트 연결 만들기
>ln -s /application/nginx1.6.3/ /application/nginx
9. Nginx 시작
/application/nginx/sbin / nginx
10. Nginx를 중지하고 다시 시작합니다
nginx -s stop
nginx -s reload
11. Nginx가 올바른지 확인
/application/nginx/sbin/nginx -t
12. 시작 성공 여부를 확인하는 두 가지 방법
[root@cancer nginx]# netstat - lntup |grep 80tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 7853/nginx
[root@cancer nginx]# lsof - i :80
명령 PID 사용자 FD 유형 장치 크기/해제 노드 이름
nginx 7853 root 6u IPv4 466356 0t0 TCP *:http (LISTEN)
nginx 7854 nginx 6u IP v4 466356 0t0 TCP *:http (듣기)