3
3

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.

【備忘録】AWS LightSailでterminalからssh接続

Last updated at Posted at 2020-11-23

#はじめに
AWS LightSailでデータサイエンス環境構築の練習の備忘録です

#目次

  1. LightSailでインスタンスを作成
  2. shh接続

#1. AWSのlightsailでインスタンスを作成する
https://lightsail.aws.amazon.com
image.png

#2. ssh接続
アカウントページからプライベートキーをダウンロードする
image.png
アカウントページ
image.png

プライベートキーと設定ファイルを「~/.shh」ディレクトリに格納する

cd ~/.ssh
ls
Lightsail_ubuntu_20201123.pem	config
#Lightsail_ubuntu_20201123.pem・・・プライベートキー
#config・・・設定ファイル
~/.ssh/config
host lightsail_ubuntu
	HostName 3.112.200.82
	Port 22
	User ubuntu
	IdentityFile ~/.ssh/Lightsail_ubuntu_20201123.pem

ssh接続

ssh lightsail_ubuntu

もしくは、configファイルを設定せずにプライベートキーのオプションをつける方法もあります

ssh -i Lightsail_ubuntu_20201123.pem ubuntu@3.112.200.82

これで接続完了です!

##参考
・Amazon Lightsailのサーバにssh接続する
https://nana4-story.com/ssh-amazon-lightsail

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?