ssh 使用密钥无法登入Linux系统


今天测试密钥登入linux系统时 出现如下问题:
 
root@compute01:~# ssh -i algoblu.pem root@10.100.0.16
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 @        WARNING: UNPROTECTED PRIVATE KEY FILE!          @
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 Permissions 0644 for 'test.pem' 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: test.pem
 root@10.100.0.16's password:

提示还让输入密码

解决方法:
 
chmod  600  test.pem

相关内容