원본 코드 설치 Nginx 오류 발생
3727 단어 nginx 오류 신고당 한 잘못
[root@node1 nginx-0.8.55]# ./configure \
> --prefix=/usr \
> --sbin-path=/usr/sbin/nginx \
> --conf-path=/etc/nginx/nginx.conf \
> --error-log-path=/var/log/nginx/error.log \
> --pid-path=/var/run/nginx/nginx.pid \
> --lock-path=/var/lock/nginx.lock \
> --user=nginx \
> --group=nginx \
> --with-http_ssl_module \
> --with-http_flv_module \
> --with-http_gzip_static_module \
> --http-log-path=/var/log/nginx/access.log \
> --http-client-body-temp-path=/var/tmp/nginx/client/ \
> --http-proxy-temp-path=/var/tmp/nginx/proxy/ \
> --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre= option.
위의 절 차 는 pcre 라 는 라 이브 러 리 파일 이 현저히 부족 합 니 다. 설치 한 후에 경 로 를 지정 합 니 다. 우 리 는 이어서 설치 합 니 다.
[root@node1 pcre-8.02]# ./configure --prefix=/usr/local/pcre
[root@node1 pcre-8.02]# make && make install
정상적으로 설치 되 어 있 습 니 다. 이어서 ngix 를 설치 하 겠 습 니 다.
[root@node1 nginx-0.8.55]# ./configure \
> --prefix=/usr \
> --sbin-path=/usr/sbin/nginx \
> --conf-path=/etc/nginx/nginx.conf \
> --error-log-path=/var/log/nginx/error.log \
> --pid-path=/var/run/nginx/nginx.pid \
> --lock-path=/var/lock/nginx.lock \
> --user=nginx \
> --group=nginx \
> --with-http_ssl_module \
> --with-http_flv_module \
> --with-http_gzip_static_module \
> --http-log-path=/var/log/nginx/access.log \
> --http-client-body-temp-path=/var/tmp/nginx/client/ \
> --http-proxy-temp-path=/var/tmp/nginx/proxy/ \
> --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
> --with-pcre=/usr/local/pcre
make 타 임 스 를 사용 하면 다음 과 같은 오류 가 발생 했 습 니 다.
[root@node1 nginx-0.8.55]# make
make -f objs/Makefile
make[1]: Entering directory `/nginx/nginx-0.8.55'
cd /usr/local/pcre \
&& if [ -f Makefile ]; then make distclean; fi \
&& CC="gcc" CFLAGS="" \
./configure --disable-shared
/bin/sh: line 2: ./configure:
make[1]: *** [/usr/local/pcre/Makefile] 127
make[1]: Leaving directory `/nginx/nginx-0.8.55'
make: *** [build] 2
자 료 를 통 해 원래 환경 을 검사 할 때 설치 후 디 렉 터 리 를 가리 키 는 것 이 아니 라 pcre 의 원본 디 렉 터 리 를 가리 키 는 것 입 니 다.아래 와 같이 하면 된다
[root@node1 nginx-0.8.55]# ./configure \
> --prefix=/usr \
> --sbin-path=/usr/sbin/nginx \
> --conf-path=/etc/nginx/nginx.conf \
> --error-log-path=/var/log/nginx/error.log \
> --pid-path=/var/run/nginx/nginx.pid \
> --lock-path=/var/lock/nginx.lock \
> --user=nginx \
> --group=nginx \
> --with-http_ssl_module \
> --with-http_flv_module \
> --with-http_gzip_static_module \
> --http-log-path=/var/log/nginx/access.log \
> --http-client-body-temp-path=/var/tmp/nginx/client/ \
> --http-proxy-temp-path=/var/tmp/nginx/proxy/ \
> --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
> --with-pcre=/usr/local/pcre-8.02
[root@node1 nginx-0.8.55]# make && make install
OK!설치 성공