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?

Visual Studio Codeの拡張機能Remote Development 設定テンプレート

Last updated at Posted at 2020-09-08

はじめに

まずVisual Studio Codeの拡張機能であるRemote Developmentをインストールします。
WindowsもMacも同じ設定になります。

configファイルの設定

以下のように設定します。

Host hostname
   HostName IP_address
   User user_name
   IdentityFile ~/.ssh/key.pem
   StrictHostKeyChecking no
   UserKnownHostsFile /dev/null
  • Host ホスト(サーバー)のニックネーム
  • User SSH接続するホスト(サーバー)のユーザー名
  • IdentityFile ホスト(サーバー)の秘密鍵のパス
  • StrictHostKeyChecking SSHで信用できるホスト(サーバー)として登録されていない場合に表示される警告をどうするか。
    noの場合は、無条件にそのサーバに接続する。
  • UserKnownHostsFile known_hostsファイルのディレクトリ。/dev/nullの場合は、known_hostsに影響を与えない。
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?