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公開鍵と秘密鍵の作成方法

Last updated at Posted at 2023-05-14

SSH公開鍵と秘密鍵の作成方法

必要なソフトウェア

  • Git Bash

    Git BashはWindowsで使えるUNIXコマンドライン環境です。Git Bashをインストールしていない場合は、以下のURLからダウンロードしてインストールしてください。

    ダウンロードリンク

公開鍵と秘密鍵の作成手順

  1. Git Bashを開きます。

  2. 次のコマンドを入力して、鍵のペアを生成します。ここでyour_email@example.comはあなたのメールアドレスに置き換えてください。

    $ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
    
  3. プロンプトが表示されたら、Enterキーを押してデフォルトの場所にキーファイルを保存します。

    > Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]
    
  4. 次にパスフレーズを設定します。パスフレーズは空でも大丈夫ですが、セキュリティを強化するために設定することを推奨します。

    > Enter passphrase (empty for no passphrase): [Type a passphrase]
    > Enter same passphrase again: [Type passphrase again]
    

これで、~/.ssh/id_rsa(秘密鍵)と~/.ssh/id_rsa.pub(公開鍵)の二つの鍵が作成されます。

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?