ssh公開鍵認証設定
クライアント側で公開鍵、秘密鍵を作成しサーバに公開鍵転送
$ ssh-keygen -t rsa
$ scp ~/.ssh/id_rsa.pub USER@REMOTE_HOST:.
~/.ssh/id_rsa
~/.ssh/id_rsa.pub
を作成し、~/.ssh/id_rsa.pub
を転送。
パーミッション
~/.ssh/id_rsaは600or400でないとダメ。
~/.ssh は700以下?
サーバ側で転送された公開鍵を設定
$ cat ~/id_rsa.pub >> ~/.ssh/authorized_keys
$ chmod 755 ~/.ssh/authorized_keys
パーミッション
authorized_keysは755以下に設定。
~/.ssh は700以下?
公開鍵を指定してのログイン方法
$ ssh -i ~/.ssh/id_rsa USER@REMOTE_HOST
Author And Source
この問題について(ssh公開鍵認証設定), 我々は、より多くの情報をここで見つけました https://qiita.com/junsuke/items/04a18fc4cc84eb8c2bbc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .