1
1

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 5 years have passed since last update.

SSH接続の設定を~/.ssh/configに書いておくと接続する際に長いコマンドを打つ必要がなくなる

Last updated at Posted at 2019-10-15

この記事を読むことで実現できること

~/.ssh/configにあらかじめ設定を書いておくことで、SSH接続する際に以下のような長いコマンドを打っていたのが、

ssh -i {秘密鍵までのパス} {ユーザー名}@{ホスト名}

以下のように短いコマンドで済むようになります。

ssh {適当な名前}

~/.ssh/configに設定を書く

~/.ssh/configを作成するため以下のコマンドを実行します。

touch ~/.ssh/config

テキストエディタで~/.ssh/configを開きます。そして、以下のように入力します。

~/.ssh/config
Host {適当な名前}
HostName {ホスト名}
User {ユーザー名}
IdentityFile {秘密鍵までのパス}

Hostにはコマンドで呼び出す際の名前を入力します。HostNameには接続先のホスト名を入力します。Userには接続先のユーザー名を入力します。IdentityFileには公開鍵認証に使う際の秘密鍵までのパスを入力します。公開鍵認証を使わない場合は入力する必要はありません。

接続できるか確認

Hostに入力した名前でSSH接続ができれば成功です。

ssh {適当な名前}
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?