SSHパスワードなしログイン方法
・公開鍵を使用する。
==== クライアント側 ====
1) 公開鍵生成
$ ssh-keygen -t rsa
2) 公開鍵の転送
$ scp $HOME/.ssh/id_rsa.pub サーバのIP:$HOME
※ .sshがない場合は作る。
$ mkdir $HOME/.ssh
$ chmod 700 $HOME/.ssh
==== サーバ側 ====
1) 公開鍵の登録
$ cat $HOME/id_rsa.pub >> $HOME/.ssh/authorized_keys
2) authorized_keysの権限の変更
$ chmod 600 $HOME/.ssh/authorized_keys
-
前の記事
ユーザアカウントの追加 2015.09.22
-
次の記事
CSV使い方 2015.09.24
コメントを書く