728x90
Linux SSL Trouble Shooting
[에러구문]
cannot load certificate key "/home/SSL/201810/key.pem": PEM_read_bio_PrivateKey() failed
(SSL: error:0906406D:PEM routines:PEM_def_callback:problems getting password error:0906A068:PEM routines:PEM_do_header:bad password read)
[처리방법]
openssl rsa -in [기존인증서파일].key -out [새로운인증서파일].key
openssl 로 접근하게 되면 key에 대한 pass-phrase 를 물어본다. 이 경우 비밀번호를 넣었을 때 복호화에 성공하면 새로운 키를 -out 으로 생성하게 된다.
'LINUX' 카테고리의 다른 글
Nginx - Redirect HTTP to HTTPS (0) | 2021.08.05 |
---|---|
Nginx에서 자동 Redirection(301 Permanently moved) 설정하기 (0) | 2021.08.04 |
How to kill a process on a port on ubuntu (0) | 2021.07.25 |
How to pass password automatically for rsync SSH command? (0) | 2021.07.25 |
리눅스 크론탭(Linux Crontab) 사용법 (0) | 2021.07.25 |