0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

1つのインスタンスに対して複数クライアントからssh公開鍵認証する際の流れ

Posted at

はじめに

OS:m1mac

複数のpcを使用していて、仮想マシンの1つのインスタンスに対してそれぞれssh接続したい時があります。その際に新しく公開鍵と秘密鍵を作成するのではなく、秘密鍵を持ってきて使用したいpcに適応させる方法の流れを書いておきます。

流れ

①まずは元々生成してある秘密鍵を確認する(pc-A)

-----BEGIN OPENSSH PRIVATE KEY-----
(長い文字と数字の羅列)
-----END OPENSSH PRIVATE KEY-----

②これを丸々コピーして、何らかの方法を用いて新たにssh接続したいpc(pc-B)にデータを移す

③秘密鍵を置いておくファイルを生成

touch ~/.ssh/id_rsa

④エディタで開き、②でコピーしてきた秘密鍵を丸々ペースト

⑤以下のコマンドを実行

ファイルのパーミッション設定を変更します。

chmod 600 ~/.ssh/id_rsa

⑥無事、インスタンスに接続できました、めでたしめでたし

ssh (ユーザ名)@(外部IP)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?