※基本的に、さくらレンタルサーバ、VPSでも鍵の作り方は同じ
1.まず、鍵なしでssh接続する
2..sshフォルダに移動する
3.鍵の作成
ssh-keygen -t rsa
鍵の作成場所を聞かれるのでリターンでok
Enter file in which to save the key (/home/xxxx/.ssh/id_rsa):
パスフレーズを入力(2回)
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
秘密鍵(id_rsa)と公開鍵(id_rsa.pub)が作成される。
4.公開鍵のファイル名の変更
mv id_rsa.pub authorized_keys
5.パーミッションの変更
chmod 600 authorized_key
6.id_rsaを接続元マシンに移動して完了!!