아파치와 php configure시 에러
fedora core3를 사용중이며 설치하려는 apache와 php는 버젼이 2.0.53 / 5.0.3입니다.
configure의 옵션은 다음과 같이 설정하였습니다.
./configure \
--prefix=/usr/local/apache \
--enable-mods-shared=most \
--enable-modules=so \
--with-mpm=worker
--------------------------------------------
./configure \
--prefix=/usr/local/php \
--with-regex=php \
--with-apxs2=/usr/local/apache/bin/apxs \
--with-config-file-path=/usr/local/apache/conf \
--with-mysql=/usr/local/mysql \
--with-gd \
--with-png-dir \
--with-zlib-dir \
--with-jpeg-dir \
--with-freetype-dir \
--with-db \
--with-gettext \
--with-iconv \
--with-imap=/usr/local/imap \
--with-imap-ssl \
--with-openssl \
--with-dom \
--with-gdbm \
--with-kerberos \
--with-calendar=shared \
--enable-exif \
--enable-ftp \
--enable-inline-optimization \
--enable-magic-quotes \
--enable-memory-limit \
--enable-sockets \
--enable-track-vars \
--enable-trans-sid \
--enable-versioning \
--enable-wddx \
--enable-module=so \
--disable-debug \
--disable-posix
아파치는 이상없이 configure 잘 되는데 php에서는 도중에 다른 분들과 마찬가지로 아래와 같은 에러가 발생합니다.
Sorry, I cannot run apxs. Possible reasons follow:
1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)
The output of /usr/local/apache/bin/apxs follows:
./configure: line 5085: /usr/local/apache/bin/apxs: No such file or directory
configure: error: Aborting
apxs란 file은 bin이 아닌 support에 있던데....
아시는 분의 조언을 부탁드립니다.
Re: 아파치와 php configure시 에러
아파치 설치시의 옵션 중
--enable-modules=so
부분을
--enable-so
로 해보세요.
--enable-modules=so 는 apache 1.x에서 사용하던 옵션입니다..
댓글 달기