생산 환경 에서 nginx 를 다시 컴 파일 하지 않 고 lua 플러그 인 모듈 을 추가 하여 resp 로 그 를 수집 합 니 다.

7545 단어 서버 운영
최근 에 app 문 제 를 찾기 위해 생산 환경 에서 app 은 로 그 를 열지 않 기 때문에 서버 에서 인터페이스 문 제 를 찾 을 수 밖 에 없습니다. 서버 의 인터페이스 에 nginx 의 request 요청 로그 가 있 습 니 다.nginx 에 설 정 했 습 니 다.
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent $request_body "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for" $request_time $upstream_response_time $upstream_addr $upstream_status';

그러나 resp 정보 가 없습니다. resp 정 보 를 표시 하려 면 스 크 립 트 를 써 야 합 니 다. 인터넷 의 방안 은 모두 nginx 를 컴 파일 하여 lua 모듈 에 추가 하 는 것 입 니 다. 그러나 현재 nginx 는 다시 컴 파일 하고 싶 지 않 아 Google 에서 해결 방법 을 찾 았 습 니 다.nginx 버 전 을 다운로드 하고 설 치 된 인 자 를 보고 nginx - V 로 보 는 것 입 니 다.그리고 다시 컴 파일 한 후 make install 을 하지 않 고 설 치 된 디 렉 터 리 에 해당 모듈 을 복사 합 니 다.구체 적 인 절 차 는 다음 과 같다.
nginx -v

nginx version: nginx/1.16.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-stream_ssl_preread_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-http_auth_request_module --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

nginx 소스 코드 다운로드 http://nginx.org/en/download.html
홈 페이지 주소https://luajit.org/
lua - nginx - module 다운로드 https://github.com/openresty/lua-nginx-module/tags?after=v0.10.12
다운로드 ngxdevel_kit https://github.com/vision5/ngx_devel_kit/archive/v0.3.1.tar.gz
tar - zxvf 압축 해제 후 make install PREFIX = / usr / local / luajit 실행
luajit 환경 변수 편집 / etc / profile 내 보 내기
export LUAJIT_LIB=/usr/local/luajit/lib  export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0  export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH  
./configure --add-module=/opt/ngx_devel_kit --add-module=/opt/lua-nginx-module --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-stream_ssl_preread_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-http_auth_request_module --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'
이것 이 바로 yum instal 명령 으로 출력 하 는 것 입 니 다. 많은 오류 가 발생 할 수 있 습 니 다.
1、/usr/lib/rpm/redhat/redhat-hardened
yum install redhat-rpm-config
2 、 HTTP XSLT 모듈 을 만나면 libxml 2 / libxslt 설치 가 필요 합 니 다.
yum -y install libxml2 libxml2-dev yum -y install libxslt-devel
3, HTTP 이미지 필터 모듈 을 만나면 GD 라 이브 러 리 가 필요 합 니 다
yum install gd - devel 4, perl module 을 만 났 습 니 다. ExtUtils:: Embed is required
yum -y install perl-devel perl-ExtUtils-Embed
5, 오류 가 발생: Google perftools 모듈 은 Google perftools 가 필요 합 니 다
yum install gperftools
6, 오류 가 발생: GeoIP 모듈 은 GeoIP 라 이브 러 리 가 필요 합 니 다
yum -y install GeoIP GeoIP-devel GeoIP-data
 
7. 확인 을 통 해 make 를 실행 하지만 make install 을 실행 하지 마 십시오.
원래 nginx 먼저 멈 추고 systemctl stop nginx
원래 cp / usr / sbin / nginx / usr / sbin / nginx. bak 를 백업 합 니 다.
시작 nginx lua 에서 libluajit - 5.1. so. 2 를 찾 지 못 하면 Id / usr / sbin / nginx 명령 으로 링크 를 봅 니 다.
libluajit - 5.1. so. 2 = > not found 를 발견 하면 vim / etc / ld. so. conf. d / libc. conf 를 수 동 으로 추가 할 수 있 습 니 다.
/ usr / local / luajit / lib 입력 /usr / local / lib 실행 ldconfig 적용
8. 오류 없 음 파일 '/ usr / local / luajit / lib / lu / 5.1 / resty / core. so' no file '/ usr / local / lib / lu / 5.1 / loadall. so' no file '. / resty. so' no file '/ usr / local / lib / lu / 5.1 / resty. so' no file '/ usr / local / luajit / lib / lu / 5.1 / resty. so' no file '/ usr / local / lib / lu / 5.1 / loadall. so') in / etc / ngix / ngix. conf: 128
최신 버 전 lua - ngix - module 은 openresty 라 이브 러 리 에 의존 하기 때문에 현재 openresty 가 필요 하지 않 으 면 github 에서 비교적 빠 른 버 전 을 선택 할 수 있 습 니 다. 저 는...
Luajit 2.0.5 는 2017 정도 이기 때문에 2017 년 정도 버 전도 골 라 서 나중에 다시 컴 파일 하면 시동 을 걸 수 있다.
다음은 nginx 에 스 크 립 트 를 추가 하여 반환 내용 을 가 져 와 nginx 프로필 에 설정 해 야 합 니 다.
1. 로그 파일 형식 에 '$resp' 추가body’
2. 스 크 립 트 코드 추가
            lua_need_request_body on;
            body_filter_by_lua ' 
              local resp_body = string.sub(ngx.arg[1],1,1000)
              ngx.ctx.buffered = (ngx.ctx.buffered or "") .. resp_body
              if ngx.arg[2] then
                 ngx.var.resp_body = ngx.ctx.buffered
              end
            ';

 
반환 내용 은 16 진수 형식 으로 utf - 8 인 코딩 을 한 것 으로 디 코딩 이 필요 합 니 다.간단하게 인터넷 에 온라인 디 코딩 도구 가 있어 요.vscode 로 python 스 크 립 트 를 쓸 수도 있 습 니 다.
str1='"{\x22result\x22:0,\x22message\x22:\x22\xE8\xAF\xB7\xE6\xB1\x82\xE6\x88\x90\xE5\x8A\x9F\x22,\x22data\x22:0}"'
print(str1.encode('raw_unicode_escape').decode('utf-8'))

좋은 웹페이지 즐겨찾기