728x90
[Centos7] Apache SSL 인증서 비밀번호 검증 없애기
2022.07.19 - [OS & Server/Linux] - [Centos7] Apache SSL 설정
$ service httpd start
Redirecting to /bin/systemctl start httpd.service
Enter TLS private key passphrase for 127.0.0.1:443 (RSA) :
지난 시간에 위와 같이 Apache에 SSL 설정을 하여 HTTPS 프로토콜로 웹 서비스를 제공할 수 있도록 하였다. 위 설정은 한가지 문제가 발생하는데 서비스를 재시작하거나 리눅스를 재부팅하면 매번 구동할 때마다 비밀번호를 입력해주어야 한다. 이런 경우를 대비하여 비밀키에 비밀번호를 제거해보자.
# SSL 인증서 파일 디렉토리로 이동
$ cd /etc/httpd/ssl
# 키 파일 백업
$ cp playground.key playground.key.bak
# 키 비밀번호 제거
$ openssl rsa -in playground.key -out playground.key
Enter pass phrase for playground.key:
writing RSA key
# Apache 재시작
$ service httpd restart
Redirecting to /bin/systemctl restart httpd.service
Apache 재시작 시 비밀번호를 물어보지 않는다.
728x90
'OS & Server > Linux' 카테고리의 다른 글
[Centos7] Apache 도메인 네임 리다이렉트 (0) | 2022.07.20 |
---|---|
[Centos7] Apache HTTP -> HTTPS로 리다이렉트 (0) | 2022.07.19 |
[Centos7] Apache SSL 설정 (0) | 2022.07.19 |
[Apache Tomcat] 톰캣 일자별 로그 나누기 (0) | 2022.07.19 |
[Centos7] mod_jk를 이용한 Apache 와 Tomcat 연동 (0) | 2022.07.19 |
댓글