Linux (RHEL) 컴 파일 설치 Nginx

1988 단어 nginxlinuxOpenSSLpcre
프로필:      
        Nginx (engine x 와 발음) 는 경량급 웹 서버 / 역방향 프 록 시 및 이메일 (IMAP / POP 3) 프 록 시 서버 로 BSD - like 프로 토 콜 에서 발행 된다.러시아의 프로그래머 Igor Sysoev 가 개발 하여 러시아의 대형 입구 사이트 와 검색엔진 Rambler (러시아어:Рамблер)사용. 메모리 가 적 고 병발 능력 이 강 한 것 이 특징 이다. 사실상 nginx 의 병발 능력 은 같은 유형의 웹 서버 에서 비교적 잘 나타난다. 중국 대륙 에서 nginx 사 이 트 를 사용 하 는 사용 자 는 시 나 닷 컴, 왕 이, 텐 센트 등 이 있다.
 
설치:
1. 초기 준비, 최신 Nginx, OpenSSL, Pcre 다운로드 (nginx 는 url rewrite 로 사용)
본문 의 이 세 가지 소프트웨어 버 전 은 각각
nginx-1.5.13.tar.gzopenssl-1.0.1g.tar.gzpcre-8.35.tar.bz2
zlib-1.2.8.tar.gz
(첨부 참조)
2. 압축 을 풀 디 렉 터 리 에 대해 3 개의 소프트웨어 를 사용 합 니 다. 제 가 사용 하 는 디 렉 터 리 는?
   /home/soft
   각각 3 개의 소프트웨어 를 풀다.
 
tar -zxvf nginx-1.5.13.tar.gz
tar -zxvf openssl-1.0.1g.tar.gz
tar jxvf pcre-8.35.tar.bz2
tar -zxvf zlib-1.2.8.tar.gz

 
 
3. pcre 설치
 
cd pcre-8.35
./configure --prefix=/usr/local/pcre
make
make install

 
 4. openssl 설치
 
cd ../openssl-1.0.1g
./config --prefix=/usr/local/openssl
./config -t
make
make install

 
5. nginx 설치, 경로 설정 주의
cd ../nginx-1.5.13
./configure --with-zlib=../zlib-1.2.8 --with-pcre=../pcre-8.35 --with-http_ssl_module --with-openssl=../openssl-1.0.1g
make
make install

  
6. 설치 성공 여부 확인
         cd  /usr/local/nginx/sbin
         ./nginx -t 
   결과 표시:
        nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
        nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
 
    프로필 이 정상 인지 테스트 합 니 다.
   
/usr/local/nginx/sbin/nginx -t -c ~/nginx.conf

 
이로써 nginx 설치 가 완료 되 었 으 며, 잠시 후 nginx 의 설정 예 와 시작 설정 을 보 여 줍 니 다.

좋은 웹페이지 즐겨찾기