我从ssh收到以下错误:
Permissions 0777 for '/Users/username/.ssh/id_rsa' are too open.
It is recommended that your private key files are NOT accessible by others.
This private key will be ignored.
我应该授予id_rsa文件什么权限?
我从ssh收到以下错误:
Permissions 0777 for '/Users/username/.ssh/id_rsa' are too open.
It is recommended that your private key files are NOT accessible by others.
This private key will be ignored.
我应该授予id_rsa文件什么权限?
当前回答
AWS上Windows 10 ssh进入Ubuntu EC2“权限太开放”错误
我在尝试使用AWS的.pem文件ssh到Ubuntu EC2实例时遇到了这个问题。
在windows中,当我将此密钥放在.ssh文件夹下创建的文件夹中时,这就起作用了
C:\Users\USERNAME\.ssh\private_key
要在Windows 10中更改权限设置,请执行以下操作:
文件设置>安全>高级禁用继承将继承的权限转换为显式权限删除除管理员之外的所有权限项
然后可以安全连接。
其他回答
对于Win10,需要将密钥移动到用户的主目录对于linuxlike操作系统,您需要chmod到700或600等。
当我试图使用公钥登录远程ftp服务器时,也遇到了类似的问题。为了解决这个问题,我完成了以下过程:
首先找到公钥的位置,因为当您尝试登录到ftp时,将使用此公钥。或者,您可以创建一个密钥并将该密钥的权限设置为600。确保您位于正确的位置并执行以下命令:
chmod 600 id_rsa
在Windows 10上,cygwin的chmod和chgrp对我来说还不够
右键单击文件->财产->安全性(选项卡)并删除除我的活动用户之外的所有用户和组。
对于我(使用Windows的Ubuntu子系统),错误消息更改为:
Permissions 0555 for 'key.pem' are too open
在使用chmod 400之后。事实证明,使用root作为默认用户是原因。
使用cmd:
ubuntu config --default-user your_username
另一个技巧是在下载文件夹中执行此操作。从AWS EC2实例下载私钥后,文件将位于该文件夹中,然后只需键入命令
ssh-keygen -y -f myprivateKey.pem > mypublicKey.pub