RadarURL
Skip to content
조회 수 4516 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

첨부된 파일을 참고 하시기 바랍니다.

 

server.crt , server.key 는 임시 입니다.

 

httpd.conf 설정부분과

httpd-ssl.conf 설정 부분을 참고 하시기 바랍니다.

 

Apache용 보안 인증서 만들기

Apache에서 HTTPS 요청을 지원하려면 다음 단계가 필요합니다. 

Apache에서 보안 인증서를 설정하는 방법에 대한 자세한 내용은 http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html 및 http://www.modssl.org/docs/2.8/ssl_faq.html의 지침을 참조하십시오. 다음 절차는 이러한 웹 사이트에서 제공되었습니다.

다음 환경 변수를 설정합니다. 

OPENSSL_CONF=OpenSSL-installation-directory /apps/openssl.cnf 

다음 명령을 실행하여 서버 인증서 및 키를 만듭니다. 

openssl req -config openssl.cnf -new -x509 -keyout newreq.pem -out newreq.pem -days 365 

일반 이름을 묻는 메시지가 나타나면 Apache를 실행할 호스트 이름을 제공합니다. 다른 모든 프롬프트에 대해서는 사용자의 특정 요구 사항에 맞는 값을 입력합니다.

이 명령은 newreq.pem을 만듭니다.

openssl 명령이 실행된 위치에서 새로 만든 newreq.pem을 엽니다. 

BEGIN CERTIFICATE로 시작하고 END CERTIFICATE로 끝나는 줄을 복사하여 Apache-install-dir/conf/ssl.crt/server.crt에 붙여넣습니다. 예를 들면 다음과 같습니다.

-----BEGIN CERTIFICATE-----
....
...
-----END CERTIFICATE----- 

BEGIN RSA PRIVATE KEY로 시작하고 END RSA PRIVATE KEY로 끝나는 줄을 복사하여 Apache-install-dir/conf/ssl.key/server.key에 붙여넣습니다. 예를 들면 다음과 같습니다.

-----BEGIN RSA PRIVATE KEY-----
...
...
...
-----END RSA PRIVATE KEY----- 

Apache-install-dir/conf/ssl.conf의 SSLCertificateKeyFile 및 SSLCertificateFile 변수에 올바른 값이 있는지 확인합니다.

ServerName이 www.example.com이 아닌지 확인합니다. ServerName은 서버 인증서와 키를 만들 때 입력했던 일반 이름과 일치하는 Apache가 실행될 실제 호스트 이름이어야 합니다.

http://docs.sun.com/app/docs/doc/820-4609/gcndb?a=view

 

출처 : http://www.apmsetup.com/board.php?bid=505&mode=view&uid=21182

 

추가적으로

"Server should be SSL-aware but has no certificate configured [Hint: SSLCertificateFile] ((null):0)" 에러가 나면

httpd-ssl.conf 에서

"Listen 443" 부분을 "Listen 443 http" 로 변경해주어야 한다.

 

또한

"Init: SSLPassPhraseDialog builtin is not supported on Win32" 에러가 나게되면

openssl  rsa -in 파일명.key -out 파일명.key 
을 해주고 서버를 다시 재기동 시켜주면 된다.

?

  1. 아파치 httpd.conf 재시작 없이 설정 적용하기

    Date2016.05.02 ByJAESOO Views270
    Read More
  2. 톰캣 8 소개

    Date2016.01.01 ByJAESOO Views338
    Read More
  3. 리눅스 아파치 로그 뷰어 webalizer, utf-8로 변환하기

    Date2014.12.22 ByJAESOO Views544
    Read More
  4. Webalizer Configuration – Configure Webalizer for SEO

    Date2014.12.22 ByJAESOO Views803
    Read More
  5. Webalizer, AWStats에서 국가 정보 확인하기

    Date2014.12.22 ByJAESOO Views440
    Read More
  6. Webalizer에서 국가별 로그 출력하기

    Date2014.12.22 ByJAESOO Views777
    Read More
  7. Apache: A good Webalizer.conf for the Webalizer Apache Log Analyzer utility

    Date2014.12.22 ByJAESOO Views1236
    Read More
  8. 아파치 로그분석 webalizer 설치

    Date2014.12.21 ByJAESOO Views481
    Read More
  9. Permission denied: .htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

    Date2014.12.19 ByJAESOO Views743
    Read More
  10. Permission denied: /home/.htaccess pcfg_openfile: unable to check htaccess file

    Date2014.12.19 ByJAESOO Views507
    Read More
  11. pcfg_openfile: unable to check htaccess file, ensure it is readable

    Date2014.12.19 ByJAESOO Views521
    Read More
  12. Tomcat 버전별 설명

    Date2014.06.04 ByJAESOO Views2272
    Read More
  13. Apache 실행환경을 nobody 사용자로 변경

    Date2014.05.28 ByJAESOO Views1510
    Read More
  14. 리눅스 사용자 계정별 웹서버 운영하기

    Date2014.05.27 ByJAESOO Views1872
    Read More
  15. Apache 서버에서 확장자 .htm 파일 내의 php 코드가 실행되지 않는 문제 해결 방법

    Date2014.05.26 ByJAESOO Views1692
    Read More
  16. php 웹사이트에서 파일을 업로드 하는중 100%에서 멈춰버리는 현상 해결

    Date2014.05.16 ByJAESOO Views1826
    Read More
  17. Apache Struts 버전 확인 방법

    Date2014.05.09 ByJAESOO Views2166
    Read More
  18. robots.txt를 현명하게 사용하는 방법

    Date2014.04.11 ByJaeSoo Views1752
    Read More
  19. robots.txt 파일(로봇배제 표준)

    Date2014.04.11 ByJaeSoo Views1759
    Read More
  20. Windows / apache_2.4.3 + php_5.4.10 + mod_fcgid_2.3.7

    Date2013.04.18 ByJaeSoo Views4211
    Read More
Board Pagination Prev 1 2 3 4 Next
/ 4

PageViews   Today : 12073 Yesterday : 5037 Total : 21968125  /  Counter Status   Today : 11684 Yesterday : 4602 Total : 1194407

Edited by JAESOO

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소