Apache2 에 ssl 적용 삽질기…

 

Apache2 에 ssl 적용 삽질기…

1. openssl 설치
openssl-0.9.8g.tar.gz 다운

2. 아파치 재컴파일

문제발생1
configure 하면서 아래와 같은 에러가 발생함.
configure: error: Cannot use an external APR-util with the bundled APR 에러발생

해결방법
./configure 할때 –with-included-apr 옵션 추가

문제발생2
컴파일 하면서 아래와 같이 에러 발생함.
libexpat.so: could not read symbols: File in wrong format 에러 발생

해결방법
libexpat.so 파일을 심볼릭 링크를 걸어준다.
ln -s /usr/lib64/libexpat.so.0.5.0 /usr/lib/libexpat.so

3. 인증서와 키 복사
인증기관에서 발급받은 개인키와 인증서 파일을 복사한다.
인증서 : test.crt
개인키 : test.key

4. http.conf 설정

5. apache 재시작

에러발생

해결방법
ServerName 이 정상적으로 설정되이 않아서 발생하는 문제 인듯..
http.conf 파일에 ServerName 부분 설정
ServerName xxx.xxx.xxx.xxx

6. 방화벽 체크
그래도 https:// 프로토콜이 접근이 안되면, 방화병게 443 포트가 열려있는지 체크..

 

This entry was posted in WEB/WAS and tagged , , , , , . Bookmark the permalink.

댓글 남기기