nginx 컴 파일 모듈 추가

Nginx 평활 증가 컴 파일 모듈
    생산 환경의 수요 가 필요 하기 때문에 현 재 는 원래 nginx 에 stream 모듈 기능 을 추가 해 야 합 니 다. 과정 이 간단 하지만 기록 을 해서 볼 수 있 습 니 다.구체 적 인 조작 과정 정 리 는 다음 과 같다.
1. Nginx 원 컴 파일 매개 변수 보기
[root@lb01 conf]# /opt/nginx/sbin/nginx -V      #<==        V, v       
nginx version: nginx/1.12.2
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --user=www --group=www --with-http_ssl_module --with-http_stub_status_module --prefix=/opt/nginx-1.12.2        #<==           

 
2. 필요 한 모듈 추가
스 트림 모듈 로 모듈 을 추가 해 야 합 니 다. 구체 적 인 방법 은 재 컴 파일 하고 -- with - stream 인 자 를 추가 하 는 것 입 니 다.먼저 nginx 압축 해제 후의 디 렉 터 리 에 들 어간 다음 에 다음 과 같은 컴 파일 명령 을 실행 합 니 다.
./configure --user=www --group=www --with-http_ssl_module --with-http_stub_status_module --prefix=/opt/nginx-1.12.2 --with-stream      #<==         setream  
make        #<==        make install,             ......
mv /opt/nginx/sbin/nginx{,.bak}

3. 원본 시작 파일 백업
먼저 nginx 서 비 스 를 중단 하고 원본 시작 파일 을 백업 합 니 다.
[root@lb01 nginx-1.12.2]# /opt/nginx/sbin/nginx -s stop
[root@lb01 nginx-1.12.2]# mv /opt/nginx/sbin/nginx{,.bak}

4. 새 파일 을 작업 디 렉 터 리 에 복사 합 니 다.
[root@lb01 nginx-1.12.2]# cp /usr/local/src/nginx-1.12.2/objs/nginx /opt/nginx/sbin/
[root@lb01 nginx-1.12.2]# /opt/nginx/sbin/nginx -V
nginx version: nginx/1.12.2
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --user=www --group=www --with-http_ssl_module --with-http_stub_status_module --prefix=/opt/nginx-1.12.2 --with-stream

이 단계 까지 는 이미 완성 되 었 습 니 다. 이미 볼 수 있 습 니 다. - with - ream 모듈 은 nginx 에 컴 파일 되 었 습 니 다!!

좋은 웹페이지 즐겨찾기