SSH 密钥:“'id_rsa.pub' 的权限 0644 太开放了。”在 mac

SSH Key: “Permissions 0644 for 'id_rsa.pub' are too open.” on mac

我在我的 mac 上生成了一个 ssh 密钥对,并将 public 密钥添加到我的 ubuntu 服务器(事实上,它是一个虚拟的 machine我的 mac),但是当我尝试登录 ubuntu 服务器时,它显示:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for '/Users/tudouya/.ssh/vm/vm_id_rsa.pub' 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: /Users/tudouya/.ssh/vm/vm_id_rsa.pub
Permission denied (publickey,password).

我已经尝试了很多方法来解决这个问题,更改密钥文件模式,更改文件夹模式,如 Whosebug 上的一些答案,但它不起作用。
密钥文件权限:

vm dir:
drwxr-xr-x   4 tudouya  staff    136  4 29 10:37 vm

key file:
-rw-------  1 tudouya  staff  1679  4 29 10:30 vm_id_rsa
-rw-r--r--  1 tudouya  staff   391  4 29 10:30 vm_id_rsa.pub

请给我一些想法... =========================================

我将主机信息写入 ssh_config:

Host ubuntuvm
    Hostname 10.211.55.17
    PreferredAuthentications publickey
    IdentityFile /Users/tudouya/.ssh/vm/vm_id_rsa.pub

我运行命令"ssh -v ubuntuvm",它显示:

ssh -v ubuntuvm
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: /etc/ssh_config line 103: Applying options for *
debug1: /etc/ssh_config line 175: Applying options for ubuntuvm
debug1: Connecting to 10.211.55.17 [10.211.55.17] port 22.
debug1: Connection established.
debug1: identity file /Users/tudouya/.ssh/vm/vm_id_rsa.pub type 1
debug1: identity file /Users/tudouya/.ssh/vm/vm_id_rsa.pub-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-8
debug1: match: OpenSSH_6.6.1p1 Ubuntu-8 pat OpenSSH*
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5-etm@openssh.com none
debug1: kex: client->server aes128-ctr hmac-md5-etm@openssh.com none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA 55:6d:4f:0f:23:51:ac:8e:70:01:ec:0e:62:9e:1c:10
debug1: Host '10.211.55.17' is known and matches the RSA host key.
debug1: Found key in /Users/tudouya/.ssh/known_hosts:54
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/tudouya/.ssh/vm/vm_id_rsa.pub
debug1: Server accepts key: pkalg ssh-rsa blen 279
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for '/Users/tudouya/.ssh/vm/vm_id_rsa.pub' 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: /Users/tudouya/.ssh/vm/vm_id_rsa.pub
debug1: No more authentication methods to try.
Permission denied (publickey,password).
debug1: identity file /Users/tudouya/.ssh/vm/vm_id_rsa.pub type 1

您似乎在尝试使用错误的密钥文件。扩展名为“.pub”的文件包含密钥的 public 部分。没有“.pub”扩展名的相应文件包含密钥的 private 部分。当你运行一个ssh客户端连接到远程服务器时,你必须向ssh客户端提供私钥文件。

您的 .ssh/config 文件(或 /etc/ssh_config)中可能有这样一行:

IdentityFile .../.ssh/vm/vm_id_rsa.pub

您需要从文件名中删除“.pub”扩展名:

IdentityFile .../.ssh/vm/vm_id_rsa

我删除了 .pub file,它起作用了。

我建议你这样做:

chmod 400 ~/.ssh/id_rsa

对我来说效果很好。

登录用户应该可以读取密钥。

试试这个:

chmod 400 ~/.ssh/Key file
chmod 400 ~/.ssh/vm_id_rsa.pub

chmod 400 /etc/ssh/* 适合我。

chmod 400 path/to/filename

这对我有用。当我执行此文件时,我能够连接到我的 EC2 实例

那些建议 chmod 400 id_rsa.pub 的人听起来一点都不对。 op 很有可能使用公钥 而不是 ssh 私钥。

所以修复它可能就像 ssh -i /Users/tudouya/.ssh/vm/vm_id_rsa (the private key) user@host 一样简单。

---更新---

查看这篇文章https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys--2了解如何设置 ssh 密钥

如果密钥在 ~/.ssh 目录中,请使用

chmod 400 ~/.ssh/id_rsa

如果密钥在不同的目录中,请使用

chmod 400 directory_path/id_rsa

这对我有用。

如果您使用的是 .ssh/config 文件,请尝试

chmod 0400 .ssh/config

然后:

chmod 0400 .ssh/<<KEYFILE_PATH>>

对于我来说,id_rsa的默认模式是600,也就是readablewritable

在我将这个文件推送到 git 仓库并从另一台电脑上拉取它之后,有时私钥文件的模式会变成 -rw-r--r--.

当我指定私钥文件后用ssh拉取repo时,它失败并提示与你相同的警告。以下是我的脚本。

ssh-agent bash -c "ssh-add $PATH_OF_RSA/id_rsa; \
git pull git@gitee.com:someone/somerepo.git "

我通过将模式更改为 600 来解决这个问题。

chmod 600 $PATH_TO_RSA/id_rsa

在我的例子中,它是一个 .pem 文件。事实证明这也适用。更改了文件的权限,它起作用了。

chmod 400 ~/.ssh/dev-shared.pem

感谢以上所有帮助过的人。

给予权限 400 使密钥成为私有的,并且不被未知的人访问。它使密钥成为受保护的密钥。

chmod 400 /Users/tudouya/.ssh/vm/vm_id_rsa.pub

很多类似的答案,但没有解释...

因为私钥文件权限太开放而抛出错误。这是一个安全风险。

将私钥文件的权限更改为最小(所有者只读)

  1. 更改所有者chown <unix-name> <private-key-file>
  2. 设置最小权限(只读给文件所有者)chmod 400 <private-key-file>

就在 运行 下面到你的 pem

sudo chmod 600 /path/to/my/key.pem 

在 运行 下面的命令之后它对我有用

sudo chmod 600 /path/to/my/key.pem

SSH 密钥是私有的,因此 644 权限太开放了。

设置权限的二进制引用

 r(read) = 4
 w(write) = 2
 x(execute) = 1

因此,通过将这些数字相加并将相加的数字传递给 chmod 命令,我们设置了 file/directory 的权限。 第一个数字为所有者设置权限,第二个数字为组,第三个数字为系统上无权访问该文件的所有其他用户。

A permission of 644 means 
(4+2) = read/write permission for the owner
(4) = read permission for the group 
(4) = read permission for all other users 
 

通过使用

将文件的权限更改为400
chmod 400 <filename>

问题已解决。因为它使所有者可以只读访问密钥。

参考:https://www.linux.com/training-tutorials/understanding-linux-file-permissions/

chmod 600 id_rsa

运行 以上命令来自密钥存储在 vm ex 中的路径:cd /home/opc/.ssh

你必须运行下面的命令

chmod 400 /path/to/my/key.pem

这应该可以解决问题:

chmod 600 id_rsa

在我的例子中,如果发现这个文件实际上不是我需要的文件,因为显然我用来创建 ssh 密钥的命令 ssh-keygen -t rsa

在我工作的文件目录中使用我使用的名称为我创建了密钥。

因此,请检查您正在工作的目录中的隐藏文件,您可能只会看到 ssh 和 ssh.pub

我有类似的问题,通过更改对我有用的相应文件和文件夹的权限解决了这个问题。

这是对我有用的解决方案:

$ chmod 0600 ~/.ssh/id_rsa.pub
$ chmod 0600 ~/.ssh/authorized_keys
$ chmod 0600 ~/.ssh/id_rsa
$ chmod 0700 ~/.ssh

将您的 KEY 权限更改为

chmod 400 your_key.pem

应该可以!

上面已经有很多很好的解释了,建议阅读理解。

这是我简单的分步解决方案:

  1. 在您的终端上,运行: open ~/.ssh/config

  2. 在你的文件中,你会看到类似这样的内容(就我个人而言):

Host *
  IgnoreUnknown UseKeychain
  AddKeysToAgent yes
  IdentityFile ~/.ssh/id_ed25519.pub

或者像这样(按照这个问题中的例子)。

Hostname 10.211.55.17
    PreferredAuthentications publickey
    IdentityFile /Users/tudouya/.ssh/vm/vm_id_rsa.pub
  1. 从最后一行删除“.pub”扩展名,它应该如下所示:
Hostname 10.211.55.17
    PreferredAuthentications publickey
    IdentityFile /Users/tudouya/.ssh/vm/vm_id_rsa

或者在我的情况下:

Host *
  IgnoreUnknown UseKeychain
  AddKeysToAgent yes
  IdentityFile ~/.ssh/id_ed25519
  1. 保存文件并测试您的 ssh 连接。

我在使用 macbook m1 时遇到了这个问题,后来我意识到我缺少连接脚本sudo

sudo ssh -i "key.pem" ubuntu@IP_Address

如果您使用的是 macbook,请确保您没有在连接脚本中遗漏 sudo