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.

clipboard1

ssh版本:

clipboard2

windows版本:

clipboard3

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

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

clipboard4

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

clipboard5

:: 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%

clipboard7

之后使用脚本ssh -i sapdis.pem root@39.XX.XXX.142
登录成功:

clipboard8

本文来自和通数据库合作伙伴“汪子熙”,了解相关信息可以关注微信

相关内容