Nginx_Nginx 설치 및 추가 모듈

16132 단어 Nginx
이 글 은 주로 Nginx 설치, Nginx 버 전 을 설명 합 니 다.   nginx/1.14.2
 
설치 문서 의 주요 참고 자료:
1. 제2 판  1.3 절
2. nginx 동적 추가 모듈 설치 됨
https://www.cnblogs.com/lixigang/articles/5130052.html
 
 
1. nginx 설치 전 준비
2. 컴 파일 설치 및 중요 한 매개 변수
3. 컴 파일 된 nginx 추가 모듈
 
대전제: 여기, 우 리 는 컴 파일 을 통 해 설치 합 니 다.이 를 통 해 모듈 추가 등 Nginx 를 유연 하 게 설정 할 수 있 습 니 다. 
 
 
1. nginx 설치 전 준비
 
우선, 우 리 는 리 눅 스 의 커 널 버 전 을 검사 해 야 한다.시간의 다 중 재 활용 을 해결 하기 위해 서 는 epoll 모델 이 필요 합 니 다.Linux 에 서 는 select 나 poll 을 사용 하여 사건 의 다 중 재 활용 을 해결 합 니 다.
nginx 의 커 널 버 전이 2.6 이상 이 필요 합 니 다.
[root@nginx1 my_bin]# uname -a
Linux nginx1 3.10.0-957.1.3.el7.x86_64 #1 SMP Thu Nov 29 14:49:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

이미 2.6 이상 인 것 을 볼 수 있다.
 
 
자, 우 리 는 Nginx 의 기본 구성 요 소 를 설치 하기 시작 했다.
 
1. GCC 컴 파일 러
GCC (GNU Compiler Collection) 는 C 언어 프로그램 을 컴 파일 하 는 데 사용 할 수 있다.
Nginx 모듈 을 개발 하려 면 소스 코드 를 직접 컴 파일 해 야 합 니 다.
yum install -y gcc

 
C 컴 파일 러 를 제외 하고 우 리 는 C + 컴 파일 러 를 설치 해 야 한다.
yum install -y gcc-c++

 
2. PRCE 라 이브 러 리
PRCE (Perl Compatible Regular Expressions, Perl 정규 표현 식).이 라 이브 러 리 는 정규 표현 식 을 지원 합 니 다. RegEx 에서 진화 되 었 습 니 다.Nginx 는 정규 표현 식 을 사용 해 야 합 니 다. 그러면 Nginx 를 컴 파일 하여 PRCE 라 이브 러 리 를 설치 합 니 다.
pcre - devel 은 PRCE 를 이용 하여 2 차 개발 을 할 때 필요 한 개발 창고 로 헤더 파일 을 포함한다.이것 도 Nginx 를 컴 파일 하 는 데 필요 한 것 이다.
yum install -y pcre pcre-devel

 
3. zlib 라 이브 러 리
zlib 라 이브 러 리 는 Http 패키지 의 내용 을 gzip 형식 으로 압축 하 는 데 사 용 됩 니 다. nginx. conf 에 gzip on 을 설정 하고 특정한 유형의 (content - type) HTTP 응답 을 gzip 으로 압축 하여 네트워크 전송 을 줄 일 것 을 지정 합 니 다.그러면 컴 파일 할 때 zlib 를 Nginx 에 컴 파일 해 야 합 니 다.
zlib 는 직접 사용 하 는 라 이브 러 리 이 고 zlib - devel 은 2 차 개발 에 필요 한 라 이브 러 리 입 니 다.
yum install -y zlib zlib-devel

 
4. OpenSSL 개발 라 이브 러 리
Http 뿐만 아니 라 SSL 프로 토 콜 에서 HTTP 를 전송 해 야 한다 면 OpenSSL 이 필요 합 니 다.
yum install -y openssl openssl-devel

.
 
2. 컴 파일 설치 및 중요 한 매개 변수
 
yum 가 기본 적 으로 필요 한 소프트웨어 를 설치 한 후에 우 리 는 컴 파일 하여 설치 할 수 있다.
컴 파일 하여 설치 할 때, 우 리 는 약간의 매개 변수의 설정 에 주의해 야 한다.
 
1. 우선, 우 리 는 tgz 가방 을 풀 었 다.
 
2. 그리고 우 리 는 사전 컴 파일 을 하고 설정 을 한다.이 프로 세 스 는 일반적인 Makefile 설치 와 일치 합 니 다.
여기 서 우 리 는 스스로 도움말 문 서 를 보 는 것 을 배 워 야 한다.
./configure --help
[root@nginx1 nginx-1.14.2]# ./configure --help

  --help                             print this message

  --prefix=PATH                      set installation prefix
  --sbin-path=PATH                   set nginx binary pathname
  --modules-path=PATH                set modules path
  --conf-path=PATH                   set nginx.conf pathname
  --error-log-path=PATH              set error log pathname
  --pid-path=PATH                    set nginx.pid pathname
  --lock-path=PATH                   set nginx.lock pathname

  --user=USER                        set non-privileged user for
                                     worker processes
  --group=GROUP                      set non-privileged group for
                                     worker processes

  --build=NAME                       set build name
  --builddir=DIR                     set build directory

  --with-select_module               enable select module
  --without-select_module            disable select module
  --with-poll_module                 enable poll module
  --without-poll_module              disable poll module

  --with-threads                     enable thread pool support

  --with-file-aio                    enable file AIO support

  --with-http_ssl_module             enable ngx_http_ssl_module
  --with-http_v2_module              enable ngx_http_v2_module
  --with-http_realip_module          enable ngx_http_realip_module
  --with-http_addition_module        enable ngx_http_addition_module
  --with-http_xslt_module            enable ngx_http_xslt_module
  --with-http_xslt_module=dynamic    enable dynamic ngx_http_xslt_module
  --with-http_image_filter_module    enable ngx_http_image_filter_module
  --with-http_image_filter_module=dynamic
                                     enable dynamic ngx_http_image_filter_module
  --with-http_geoip_module           enable ngx_http_geoip_module
  --with-http_geoip_module=dynamic   enable dynamic ngx_http_geoip_module
  --with-http_sub_module             enable ngx_http_sub_module
  --with-http_dav_module             enable ngx_http_dav_module
  --with-http_flv_module             enable ngx_http_flv_module
  --with-http_mp4_module             enable ngx_http_mp4_module
  --with-http_gunzip_module          enable ngx_http_gunzip_module
  --with-http_gzip_static_module     enable ngx_http_gzip_static_module
  --with-http_auth_request_module    enable ngx_http_auth_request_module
  --with-http_random_index_module    enable ngx_http_random_index_module
  --with-http_secure_link_module     enable ngx_http_secure_link_module
  --with-http_degradation_module     enable ngx_http_degradation_module
  --with-http_slice_module           enable ngx_http_slice_module
  --with-http_stub_status_module     enable ngx_http_stub_status_module

  --without-http_charset_module      disable ngx_http_charset_module
  --without-http_gzip_module         disable ngx_http_gzip_module
  --without-http_ssi_module          disable ngx_http_ssi_module
  --without-http_userid_module       disable ngx_http_userid_module
  --without-http_access_module       disable ngx_http_access_module
  --without-http_auth_basic_module   disable ngx_http_auth_basic_module
  --without-http_mirror_module       disable ngx_http_mirror_module
  --without-http_autoindex_module    disable ngx_http_autoindex_module
  --without-http_geo_module          disable ngx_http_geo_module
  --without-http_map_module          disable ngx_http_map_module
  --without-http_split_clients_module disable ngx_http_split_clients_module
  --without-http_referer_module      disable ngx_http_referer_module
  --without-http_rewrite_module      disable ngx_http_rewrite_module
  --without-http_proxy_module        disable ngx_http_proxy_module
  --without-http_fastcgi_module      disable ngx_http_fastcgi_module
  --without-http_uwsgi_module        disable ngx_http_uwsgi_module
  --without-http_scgi_module         disable ngx_http_scgi_module
  --without-http_grpc_module         disable ngx_http_grpc_module
  --without-http_memcached_module    disable ngx_http_memcached_module
  --without-http_limit_conn_module   disable ngx_http_limit_conn_module
  --without-http_limit_req_module    disable ngx_http_limit_req_module
  --without-http_empty_gif_module    disable ngx_http_empty_gif_module
  --without-http_browser_module      disable ngx_http_browser_module
  --without-http_upstream_hash_module
                                     disable ngx_http_upstream_hash_module
  --without-http_upstream_ip_hash_module
                                     disable ngx_http_upstream_ip_hash_module
  --without-http_upstream_least_conn_module
                                     disable ngx_http_upstream_least_conn_module
  --without-http_upstream_keepalive_module
                                     disable ngx_http_upstream_keepalive_module
  --without-http_upstream_zone_module
                                     disable ngx_http_upstream_zone_module

  --with-http_perl_module            enable ngx_http_perl_module
  --with-http_perl_module=dynamic    enable dynamic ngx_http_perl_module
  --with-perl_modules_path=PATH      set Perl modules path
  --with-perl=PATH                   set perl binary pathname

  --http-log-path=PATH               set http access log pathname
  --http-client-body-temp-path=PATH  set path to store
                                     http client request body temporary files
  --http-proxy-temp-path=PATH        set path to store
                                     http proxy temporary files
  --http-fastcgi-temp-path=PATH      set path to store
                                     http fastcgi temporary files
  --http-uwsgi-temp-path=PATH        set path to store
                                     http uwsgi temporary files
  --http-scgi-temp-path=PATH         set path to store
                                     http scgi temporary files

  --without-http                     disable HTTP server
  --without-http-cache               disable HTTP cache

  --with-mail                        enable POP3/IMAP4/SMTP proxy module
  --with-mail=dynamic                enable dynamic POP3/IMAP4/SMTP proxy module
  --with-mail_ssl_module             enable ngx_mail_ssl_module
  --without-mail_pop3_module         disable ngx_mail_pop3_module
  --without-mail_imap_module         disable ngx_mail_imap_module
  --without-mail_smtp_module         disable ngx_mail_smtp_module

  --with-stream                      enable TCP/UDP proxy module
  --with-stream=dynamic              enable dynamic TCP/UDP proxy module
  --with-stream_ssl_module           enable ngx_stream_ssl_module
  --with-stream_realip_module        enable ngx_stream_realip_module
  --with-stream_geoip_module         enable ngx_stream_geoip_module
  --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module
  --with-stream_ssl_preread_module   enable ngx_stream_ssl_preread_module
  --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
  --without-stream_access_module     disable ngx_stream_access_module
  --without-stream_geo_module        disable ngx_stream_geo_module
  --without-stream_map_module        disable ngx_stream_map_module
  --without-stream_split_clients_module
                                     disable ngx_stream_split_clients_module
  --without-stream_return_module     disable ngx_stream_return_module
  --without-stream_upstream_hash_module
                                     disable ngx_stream_upstream_hash_module
  --without-stream_upstream_least_conn_module
                                     disable ngx_stream_upstream_least_conn_module
  --without-stream_upstream_zone_module
                                     disable ngx_stream_upstream_zone_module

  --with-google_perftools_module     enable ngx_google_perftools_module
  --with-cpp_test_module             enable ngx_cpp_test_module

  --add-module=PATH                  enable external module
  --add-dynamic-module=PATH          enable dynamic external module

  --with-compat                      dynamic modules compatibility

  --with-cc=PATH                     set C compiler pathname
  --with-cpp=PATH                    set C preprocessor pathname
  --with-cc-opt=OPTIONS              set additional C compiler options
  --with-ld-opt=OPTIONS              set additional linker options
  --with-cpu-opt=CPU                 build for the specified CPU, valid values:
                                     pentium, pentiumpro, pentium3, pentium4,
                                     athlon, opteron, sparc32, sparc64, ppc64

  --without-pcre                     disable PCRE library usage
  --with-pcre                        force PCRE library usage
  --with-pcre=DIR                    set path to PCRE library sources
  --with-pcre-opt=OPTIONS            set additional build options for PCRE
  --with-pcre-jit                    build PCRE with JIT compilation support

  --with-zlib=DIR                    set path to zlib library sources
  --with-zlib-opt=OPTIONS            set additional build options for zlib
  --with-zlib-asm=CPU                use zlib assembler sources optimized
                                     for the specified CPU, valid values:
                                     pentium, pentiumpro

  --with-libatomic                   force libatomic_ops library usage
  --with-libatomic=DIR               set path to libatomic_ops library sources

  --with-openssl=DIR                 set path to OpenSSL library sources
  --with-openssl-opt=OPTIONS         set additional build options for OpenSSL

  --with-debug                       enable debug logging


 
--prefix=PATH  
의미: Nginx 설치 후 루트 디 렉 터 리.
기본 값: 기본 값 은 / usr / local / nginx 디 렉 터 리 입 니 다.이 목표 의 설정 은 다른 매개 변수의 상대 디 렉 터 리 에 영향 을 줄 수 있 음 을 주의 하 십시오.
       예 를 들 어 sbin - path = sbin / nginx 를 설정 하면 실제 실행 가능 한 파일 은 / usr / local / nginx / sbin / nginx 에 들 어 갑 니 다.
 
--conf-path=PATH
의미: 파일 의 저장 경 로 를 설정 합 니 다.
기본 값: /conf/nginx.conf

 

除此之外:

configure 由shell 脚本编写。中间会调用 /auto/目录下的脚本

 

 

编译安装比较简单,指令如下: 

./configure ...

make

make install 
 
설 치 된 후에 우 리 는 sbin 디 렉 터 리 의 nginx 를 실행 합 니 다.
 ps - ef nginx 가 nginx 를 본 후에 우리 가 설치 하 는 데 문제 가 없다 는 것 을 증명 합 니 다.
[root@nginx1 nginx-1.14.2]# ps -ef | grep nginx
root      53568      1  0 12:22 ?        00:00:00 nginx: master process nginx
nobody    53569  53568  0 12:22 ?        00:00:00 nginx: worker process
root      59045  55771  0 21:11 pts/1    00:00:00 grep --color=auto nginx

 
 
 
3. 컴 파일 된 nginx 추가 모듈
 
기본 설치 nginx  기능 이 비교적 제한 되 어 있다.이 럴 때 는 확 장 된 제3자 구성 요 소 를 설치 해 야 합 니 다.
주의:
    원본 패 키 지 는 삭제 하지 마 세 요.제3자 패 키 지 를 설치 할 때 다시 컴 파일 해 야 합 니 다.
 
nginx echo 는 비교적 유용 한 제3자 구성 요소 입 니 다.프로젝트 는 github 에서 관리 합 니 다. 주 소 는 다음 과 같 습 니 다.
https://github.com/openresty/echo-nginx-module
우 리 는 코드 를 다운로드 해서 다시 컴 파일 하여 설치 했다.
 
1. 설 치 된 확장 팩 보기
우 리 는 아래 의 명령 을 통 해 이미 설 치 된 확장 패 키 지 를 볼 수 있다.
nginx  -V   (V 대문자 주의)
[root@nginx1 nginx-1.14.2]# nginx -V
nginx version: nginx/1.14.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) 
configure arguments: --prefix=/opt/nginx --add-module=/opt/nginx_source/nginx-extend/echo-nginx-module-master

 
2. 재 컴 파일
설치 할 모듈 을 추가 하고 다시 컴 파일 합 니 다. 예 를 들 어 여기에 추가 – add - module = / data / software / ngxhttp_google_filter_module
# ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module --add-module=/data/software/ngx_http_google_filter_module
# make    //    make install,        

여러 개의 인자, 여러 개의 -- add - module 명령 을 사용 합 니 다.
설명:
   여기 서 우 리 는 가방 을 추가 합 니 다. nginx 가 재 컴 파일 할 때 이 소스 코드 를 포장 하여 재 컴 파일 하 는 것 과 같 습 니 다.따라서 이후 이 코드 들 이 컴 파일 할 때 있 는 위 치 는 중요 하지 않다.
 
 
3. 컴 파일 파일 바 꾸 기
다시 컴 파일 한 nginx 실행 가능 한 파일 은 obbs 디 렉 터 리 에서 nginx 파일 을 바 꾸 기만 하면 됩 니 다.
[root@nginx1 objs]# tree ./
./
├── addon
│   └── src
│       ├── ngx_http_echo_echo.o
│       ├── ngx_http_echo_filter.o
│       ├── ...
│       └── ngx_http_echo_var.o
├── autoconf.err
├── Makefile
├── nginx
├── nginx.8
├── ngx_auto_config.h
├── ngx_auto_headers.h
├── ngx_modules.c
├── ngx_modules.o
└── src
    ├── core
    │   ├── nginx.o
    │   ├── ...
    │   └── ngx_times.o
    ├── event
    │   ├── modules
    │   │   └── ngx_epoll_module.o
    │   ├── ngx_event_accept.o
    │   └── ...
    ├── http
    │   ├── modules
    │   │   ├── ngx_http_access_module.o
    │   │   ├── ...
    │   │   ├── ngx_http_uwsgi_module.o
    │   │   └── perl
    │   ├── ngx_http_copy_filter_module.o
    │   ├── ngx_http_core_module.o
    │   ├── ...
    │   ├── ngx_http_write_filter_module.o
    │   └── v2
    ├── mail
    ├── misc
    ├── os
    │   ├── unix
    │   │   ├── ngx_alloc.o
    │   │   ├── ngx_channel.o
    │   │   ├── ...
    │   │   └── ngx_writev_chain.o
    │   └── win32
    └── stream

16 directories, 137 files

 
nginx 실행 가능 한 파일 을 교체 하기 전에 백업 을 해 보 겠 습 니 다.
# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
# cp ./objs/nginx /usr/local/nginx/sbin/

 
모듈 을 추가 하기 위해 설 치 된 Nginx 를 완 료 했 습 니 다.
 
 

좋은 웹페이지 즐겨찾기