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 1 year has passed since last update.

SSH接続(AWS Lightsail)

Posted at

初めに

AWS Lightsailで作成したサーバーと
SSH接続できるように設定したので、備忘録として残します。

環境

開発環境 バージョン
Macbook Air M1
AWS Lightsail -
terminal -

手順

1、SSH keyを取得する
sshkey_lightsail_1.png

2、取得したkeyファイルを移動する(~/.ssh/配下に移動)

terminal
$ cd ~/Downloads/

$ chmod 400 LightsailDefaultKey-ap-northeast-1.pem // keyの権限変更

$ mv LightsailDefaultKey-ap-northeast-1.pem ~/.ssh/  // ファイルを指定した配下に移動する

3、接続!!
ユーザー名とパブリックIPアドレスを入れて下記のコマンドを打ちましょう。

terminal
$ ssh -i ~/.ssh/LightsailDefaultKey-ap-northeast-1.pem user_name@public_IP_address

サーバーに入ることができたら成功です。

最後に

最後まで閲覧いただきありがとうございました。
ご意見、ご指摘ありましたら、コメントお願いいたします。

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?