OpenSSL 키 제거
OpenSSL 인증서를 서버에 적용할 경우 웹 서버를 재 시작 할 때마다 암호를 입력해야 합니다. 하지만 불편하게 만드는 이 동작을 제거할 수가 있습니다. 방법은 아주 간단합니다.
[root@localhost ~]# openssl rsa -in originalkeywithpass.key -out newkeywithnopass.key Enter pass phrase for originalkeywithpass.key: "패스워드 입력" writing RSA key [root@localhost ~]#
"writing RSA key" 라는 문구가 나오면 정상적으로 제거가 된 것 입니다.
참고로 .pem 확장자도 똑같이 하시면 됩니다.
'Linux' 카테고리의 다른 글
리눅스(linux) 커널(kernel) 업데이트 "At least 15MB more space needed on the /boot filesystem." 에러 해결 방법 (0) | 2015.09.21 |
---|---|
리눅스(linux) hostname 변경하는 방법 (CentOS 6, 7) (0) | 2015.08.03 |
리눅스(linux) rsync 특정 파일 및 폴더 제외하는 방법(--exclude) (1) | 2015.07.17 |
리눅스(linux) SELinux 때문에 rsync 가 Permission deny 오류를 낼 때 (0) | 2015.07.16 |
HTTP 헤더에서 PHP 와 Apache 버전 정보 숨기기 (0) | 2015.07.15 |