ssh 서버에 공개키 방식으로 로그인 할 경우 사용하는 개인키의 암호를 변경/해제해봅쉬다
OpenSSL 명령어를 사용해도 되지만 ssh-keygen 명령어로 간편하게 개인키의 암호를 변경하거나 해제할 수 있습니다.
[Bash]
$ cd ~/.ssh
[Bash] : id_rsa 변경시
$ ssh-keygen -f id_rsa -p
Enter old passphrase:
[Bash]
Key has comment '/home/lesstif/.ssh/id_rsa'
Enter new passphrase (empty for no passphrase):
[Bash]
Enter same passphrase again:
Your identification has been saved with the new passphrase.