본문 바로가기
OS & Server/Linux

[Centos7] Apache SSL 인증서 비밀번호 검증 없애기

by 주리니e 2022. 7. 19.
728x90

[Centos7] Apache SSL 인증서 비밀번호 검증 없애기

 

Apache HTTP Server

 

 

2022.07.19 - [OS & Server/Linux] - [Centos7] Apache SSL 설정

 

[Centos7] Apache SSL 설정

[Centos7] Apache SSL 설정 OpenSSL 설치 # openSSL 설치 확인 $ find / -name openssl # openSSL 설치 $ yum install openssl mod_SSL 설치 $ yum -y install mod_ssl 개인키 생성 > CSR 생성 > 자체적..

jiurinie.tistory.com

$ 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

댓글