컴 파일 링 NGINX 설치 시 make 오류 해결
[root@localhost nginx-1.4.6]# ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/pcre/
NGINX 컴 파일 이 통 과 된 후 make 타 임 스 는 다음 과 같이 잘못 되 었 습 니 다.
[root@localhost nginx-1.4.6]# make
make -f objs/Makefile
make[1]: Entering directory `/usr/src/nginx-1.4.6'
cd /usr/local/pcre/ \
&& if [ -f Makefile ]; then make distclean; fi \
&& CC="cc" CFLAGS="-O2 -fomit-frame-pointer -pipe " \
./configure --disable-shared
/bin/sh: line 2: ./configure: No such file or directory
make[1]: *** [/usr/local/pcre//Makefile] Error 127
make[1]: Leaving directory `/usr/src/nginx-1.4.6'
make: *** [build] Error 2
[root@localhost nginx-1.4.6]#
주요 오류: make [1]: * * [/ usr / local / pcre / / Makefile] 오류 127
도움말 을 살 펴 보 았 습 니 다.
[root@localhost nginx-1.4.6]# ./configure --help | grep '\--with-pcre'
--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
[root@localhost nginx-1.4.6]#
발견 -- with - pcr = DIR 는 pcre 의 설치 디 렉 터 리 가 아 닌 pcre 를 설정 하 는 원본 디 렉 터 리 입 니 다.
Nginx 컴 파일 매개 변 수 를 다시 수정 합 니 다.
[root@localhost nginx-1.4.6]# ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/src/pcre-8.10/
컴 파일 통과 후 make & make install 을 실행 하 는 데 문제 가 없 을 것 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
NGINX 컴 파일 설치 방법 중 하나NGINX 의 컴 파일 설치 방법 1 1. NGINX 컴 파일 패키지 다운로드 2. nginx 소프트웨어 를 만 드 는 데 필요 한 사용자 와 그룹 3. nginx 설치 에 필요 한 의존 패키지 4. NGINX 설치...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.