NGINX 컴 파일 설치 후 새 모듈 을 추가 하 는 방법
서버 붕 괴 를 테스트 하 는 것 은 내 가 설치 한 소프트웨어 가 아 닙 니까? 세상 에.빨리 해!!!
환경: centos 6.464 비트 컴 파일 설치 nginx
1: nginx 버 전과 설치 시간 대의 구체 적 인 매개 변 수 를 봅 니 다.
/usr/local/nginx/sbin/nginx -V
2: 해당 버 전의 nginx 소스 패키지 [nginx - 1.5.11. tar. gz] 를 다운로드 하고 같이 다운로드 해 야 할 것 은 [Nginx upstream hash - 0.3.1. tar. gz] 입 니 다.
wget http://nginx.org/download/nginx-1.5.11.tar.gz
3: 압축 해제 패키지 / opt 아래로
4: 다시 설정
./configure --prefix=/usr/local/nginx-1.5.11 --user=www --group=www --with-http_stub_status_module --add-module=../nginx_upstream_hash-0.3.1/
잘못 보 고 했 습 니 다. / configure: error: invalid option "- user = ww" 는 - user = ww 가 하나 빠 졌 기 때 문 입 니 다. "-"
"-- user = ww" 라 고 써 야 합 니 다.
5: 컴 파일
make :make install
make 에서 오류 가 발생 할 수 있 습 니 다.
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c: In function ‘ngx_http_upstream_init_hash_peer’:
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:155: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘lengths’
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:155: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘values’
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:173: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘retries’
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c: In function ‘ngx_http_upstream_hash’:
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:291: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘values’
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:292: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘lengths’
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c: In function ‘ngx_http_upstream_hash_again’:
../nginx_upstream_hash-0.3.1//ngx_http_upstream_hash_module.c:315: error: ‘ngx_http_upstream_srv_conf_t’ has no member named ‘retries’
make[1]: *** [objs/addon/nginx_upstream_hash-0.3.1/ngx_http_upstream_hash_module.o] Error 1
make[1]: Leaving directory `/opt/nginx-1.5.11'
make: *** [build] Error 2
해결 방법: / opt / nginx - 1.5.11 / src / http / 에서 의 ngxhttp_upstream. h 에 추가
ngx_array_t *values;
ngx_array_t *lengths;
ngx_uint_t retries;
:
struct ngx_http_upstream_srv_conf_s {
ngx_http_upstream_peer_t peer;
void **srv_conf;
ngx_array_t *servers; /* ngx_http_upstream_server_t */
ngx_array_t *values;
ngx_array_t *lengths;
ngx_uint_t retries;
ngx_uint_t flags;
ngx_str_t host;
u_char *file_name;
ngx_uint_t line;
in_port_t port;
in_port_t default_port;
ngx_uint_t no_port; /* unsigned no_port:1 */
};
그리고 make 를 다시 실행 합 니 다.문제 가 해결 되다.
다음으로 전송:https://blog.51cto.com/jweiang/1433675
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.