2
4

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 5 years have passed since last update.

SSH(SCP)でサーバにアクセスしようとしたら警告が出てアクセスできなかった場合の対処法

Posted at

はじめてサーバにアクセスしようとしたときに下のようなエラーが表示されることがある。

Warning: Permanently added 'xx.xxx.xxx.xxx' (RSA) to the list of known hosts.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'keyfile.pem' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
bad permissions: ignore key: keyfile.pem
Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

そういうときはpemファイルのパーミッションを400にすればアクセスできるようになる。

chmod 400 keyfile.pem 

※パーミッションを600にするとアクセスできるようになったという情報もある。

2
4
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
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?