기본적으로 SSL 인증서를 추가하게되면 아파치를 가동 시 비밀번호를 요구한다.
[root]# /usr/local/httpd/bin/apachectl start
Apache/2.2.34 mod_ssl/2.2.34 (Pass Phrase Dialog)
Some of your private key files are encrypted for security reasons.
In order to read them you have to provide the pass phrases.
Server www.test.or.kr:443 (RSA)
Enter pass phrase:
OK: Pass Phrase Dialog successful
[root]#
위와 같이 서버를 가동 시 항상 비밀번호를 요구하기 때문에 재가동 시 번거로울 수 있다.
따라서 해당 인증서를 openssl 키 파일로 교체하여 비밀번호를 없애려면 아래와 같이 명령어를 친 후
새로 생긴 key 파일로 교체하고 다시 서버를 재가동 한다.
openssl rsa -in key.pem -out new_key.pem
'Server > Linux' 카테고리의 다른 글
SSH 비밀번호 입력 없이 접속하는 방법 (0) | 2023.03.22 |
---|---|
robots.txt 설정 및 네이버&구글 재크롤링(색인) 하는 법 (0) | 2020.11.11 |
Trace Method & X-Powered-By (0) | 2020.06.26 |