리눅스 분류
apache 설치 후 so 파일 없음
작성자 정보
- terw 작성
- 작성일
컨텐츠 정보
- 2,677 조회
- 1 댓글
- 0 추천
- 목록
본문
./configure --prefix=/usr/local/httpd \
--enable-cache \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--with-mpm=worker \
--enable-ssl \
--enable-modules=ssl \
--with-ssl=/usr/local/openssl \
--with-pcre \
--enable-module=shared \
--enable-mods-shared \
--enable-so
이렇게 httpd 2.2를 configure 후 make && make install 했는데요..
cd /usr/local/httpd/modules 가보면 .so파일이 하나도 없네요..
컴파일시 오류도 전혀 없었구요..
맨 마지막 3줄을 어떻게 다르게 바꿔보면 될것도 같은데.. 왜 그런걸까요? ㅠㅠ
관련자료
-
이전
-
다음
댓글 1
terw님의 댓글
- terw
- 작성일
이글 보고 해결했습니다 ..
http://httpd.apache.org/docs/2.2/ko/programs/configure.html
이렇게 하니 .so파일들이 만들어지네요 ^^
./configure --prefix=/usr/local/httpd \
--enable-cache \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--with-mpm=worker \
--enable-ssl \
--enable-modules=ssl \
--with-ssl=/usr/local/openssl \
--with-pcre \
--enable-mods-shared=all
http://httpd.apache.org/docs/2.2/ko/programs/configure.html
이렇게 하니 .so파일들이 만들어지네요 ^^
./configure --prefix=/usr/local/httpd \
--enable-cache \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--with-mpm=worker \
--enable-ssl \
--enable-modules=ssl \
--with-ssl=/usr/local/openssl \
--with-pcre \
--enable-mods-shared=all