这篇文章上次修改于 2137 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 >这个是因为密钥文件的访问权限过高,不能使用Permissions 0644 for '/home/xxx.pem' are too open. [1]报错: ``` bash @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0644 for '/home/adfa/Tools/txxx.pem' are too open. It is required that your private key files are NOT accessible by others. This private key will be ignored. Load key "/home/adfs/Tools/xxx.pem": bad permissions myuser@xxx.amazonaws.com: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). ``` [2] 解决办法: ```bash chmod 400 /home/xxx.pem ```
没有评论