天天看点

windows ssh远程登录阿里云遇到permissions are too open的错误

我试图用ssh -i 命令远程登录阿里云时,遇到如下错误:

Permissions for 'private-key.ppk' are too open. It is required that your private key files are NOT accessible by others. This private key will be ignored.

ssh版本:

windows版本:

在这个链接里找到了解决方案:

:: Set Variable :: set key="C:CodeDKOMProlikeServicesapdis.pem" :: Remove Inheritance :: cmd /c icacls %key% /c /t /inheritance:d

:: Set Ownership to Owner :: cmd /c icacls %key% /c /t /grant %username%:F

:: Remove All Users, except for Owner :: cmd /c icacls %key% /c /t /remove Administrator "Authenticated Users" BUILTINAdministrators BUILTIN Everyone System Users

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-jo0tK295-1576509916103)(

https://user-images.githubusercontent.com/5669954/70841843-8543f480-1e58-11ea-939d-b47af860c565.png)]

:: Verify :: cmd /c icacls %key%

之后使用脚本ssh -i sapdis.pem [email protected]

登录成功:

本文来自云栖社区合作伙伴“汪子熙”,了解相关信息可以关注微信公众号"汪子熙"。

继续阅读