LoginSignup
1
1

More than 5 years have passed since last update.

ssh の設定(パーミッションを含む)

Posted at
  • サーバー側
mkdir ~/.ssh && chmod 700 ~/.ssh
cd ~/.ssh
cat ~/id_dsa.pub >> authorized_keys
chmod 600 authorized_keys
  • クライアント側
ssh-keygen
cd ~/.ssh
chmod 400 id_dsa
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