元のパスフレーズがわかる場合
$ ssh-keygen -p
Enter file in which the key is (/home/user01/.ssh/id_rsa): <-鍵の場所が聞かれる
Enter old passphrase: <-古いパスフレーズを入力
Key has comment '/home/user01/.ssh/id_rsa'
Enter new passphrase (empty for no passphrase): <-新しいパスフレーズを入力
Enter same passphrase again: <-新しいパスフレーズを入力
Your identification has been saved with the new passphrase.
$
元のパスフレーズがわからない場合
$ ssh-keygen -t rsa -f .ssh/id_rsa -N "新しいパスフレーズ"
Generating public/private rsa key pair.
.ssh/id_rsa already exists.
Overwrite (y/n)? y <-上書きについて確認される
Your identification has been saved in .ssh/id_rsa.
Your public key has been saved in .ssh/id_rsa.pub.
The key fingerprint is:
b9:6e:a5:bc:6d:db:80:ed:56:cd:bb:d9:73:39:e4:c8 root@pm02
The key's randomart image is:
+--[ RSA 2048]----+
| |
| |
| |
| . |
| S o |
| +. . o. |
| .ooo.. +..|
| .+ooo E.B.|
| .o++.. o.=|
+-----------------+
$
※こちらのケースでは、秘密鍵と共に公開鍵も更新されるので、..ssh/authorized_keysの更新も忘れずに。
0 件のコメント:
コメントを投稿