ssl.conf 에 virtual host 설정부분 (ServerName) 과
인증서 생성 시 CN 에 이름이 매칭되지 않아 발생하는 로그.(아파치 재기동 시 발생)
[Fri Jan 03 09:58:52 2014] [warn] RSA server certificate CommonName (CN) `172.19.115.20' does NOT match server name!?
[Fri Jan 03 10:00:16 2014] [warn] RSA server certificate CommonName (CN) `172.19.115.20' does NOT match server name!?
> openssl 을 이용하여 발급한 인증서 정보 보기
# openssl x509 -in cert.crt -text
...
Subject: CN=*.dd.com
...
위 CN 에 맞게 apache 설정의 servername 을 변경해 준다.
<VirtualHost *:443>
# General setup for the virtual host
DocumentRoot "/app/docroot/apache"
ServerName aa.dd.com
끝
[Linux] cp 명령시 -f (강제 덮어쓰기) 명령이 먹지 않는 경우 (0) | 2014.01.21 |
---|---|
su 로 암호없이 다른 계정에 로그인하도록 설정하기 (0) | 2014.01.13 |
리눅스 날짜 출력 (0) | 2014.01.02 |
xshell 세션 복제 스크립트 (0) | 2013.12.26 |
nginx 를 이용하여 munin(모니터링툴) 띄우기 (0) | 2013.12.17 |