apache에 mod_ssl을 이용하려고 합니다.
배포본 : 레드햇 9
하려는 일 : apache + mod_ssl
소스디렉토리 : apache와 mod_ssl 모두 같은 디렉토리에 있습니다.
문제 : Error: Cannot find SSL installation
/usr/bin/openssl 메시지가 나오면서 ./configure가 안됨.
리눅스 수준 : 초보.
mod_ssl을 설치하려고 apache와 같이 설치하는데
$ cd mod_ssl-2.8.22-1.3.33
$ ./configure \
--with-apache=../apache_1.3.33
$ cd ..
$ cd apache_1.3.33
$ SSL_BASE=/usr/bin/openssl \
./configure \
--enable-module=ssl \
--prefix=/usr/local/apache \
Configuring for Apache, Version 1.3.33
+ using installation path layout: Apache (config.layout)
Creating Makefile
Creating Configuration.apaci in src
Creating Makefile in src
+ configured for Linux platform
+ setting C compiler to gcc
+ setting C pre-processor to gcc -E
+ using "tr [a-z] [A-Z]" to uppercase
+ checking for system header files
+ adding selected modules
o ssl_module uses ConfigStart/End
+ SSL interface: mod_ssl/2.8.22
+ SSL interface build type: OBJ
+ SSL interface compatibility: enabled
+ SSL interface experimental code: disabled
+ SSL interface conservative code: disabled
+ SSL interface vendor extensions: disabled
+ SSL interface plugin: Built-in SDBM
Error: Cannot find SSL installation in /usr/bin/openssl
Hint: Please provide us with the location of OpenSSL
via the environment variable SSL_BASE.
왜 ssl에서 에러가 나는지를 모르겠습니다.
openssl은 레드햇 9버전의 기본 rpm으로 설치된 것이고
위의 /usr/bin/openssl이 실행파일이 맞는데 찾을 수가 없다니 이해가 되질 않습니다.
위에서 옵션을 --enable-shared=ssl로 변경 하면 에러 없이 configure,make,make install은 됩니다.
그런데 모듈 인식문제 인지 apachectl startssl을 하면,
Invalid command 'SSLEngine', perhaps mis-spelled or defined by a module not included in the server configuration
./apachectl startssl: httpd could not be started
로 나옵니다.
------------------------------------------------------
AddModule ssl_module modules/ssl/libssl.a
line in src/Configuration with
SharedModule ssl_module modules/ssl/libssl.so
-----------------------------------------------------
이거 어떻게 처리해야 되는지 몰라서요.
DSO말고 아파치에 ssl을 포함하고 싶습니다.
" PATH에 /usr/bin; " 로도 잡혀 있고
아무 디렉토리에서나 openssl을 실행하면 Openssl> 이라고 나옵니다.
http://doc.kldp.org/Translations/html/Ap
http://doc.kldp.org/Translations/html/Apache+mod_ssl-KLDP/Apache+mod_ssl-KLDP.html#toc4
이미 읽어보셨겠지만...
문서의 내용을 분석해본 결과 해당되는 openssl은 실행파일을 가리키는게 아닌
openssl의 소스 디렉토리를 가리키는 것 같네요.
openssl의 소스를 구해서 풀어놓고 SSL_BASE를 그 소스 디렉토리로 지정해 보세요.
(openssl을 기본 컴파일정도는 해둬야할것 같기도합니다.)
------------------------------
좋은 하루 되세요.
댓글 달기