-
博文分类专栏
- Jquery基础教程
-
- 文章:(15)篇
- 阅读:46558
- shell命令
-
- 文章:(42)篇
- 阅读:154227
- Git教程
-
- 文章:(36)篇
- 阅读:234845
- leetCode刷题
-
- 文章:(76)篇
- 阅读:131787
-
Permissions for '.ssh/id_rsa' are too open报警解决办法2018-04-27 21:45 阅读(15503) 评论(0)
一、简介
今天在使用git clone的时候,既然报错
Permissions 0755 for '/home/lidequan/.ssh/id_rsa' 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: /home/lidequan/.ssh/id_rsa
既然说~/.ssh/id_rsa文件权限太大,而没法使用。
通过搜索发现id_rsa文件权限,应该设置为仅针对所有者(您)的rwx(读取,写入,执行),而对其他人则为零。
于是,将~/.ssh/id_rsa文件权限改为600,回收文件所属组和其他人的权限,并分配所有者读和写权限,立即好使了。
chmod 600 ~/.ssh/id_rsa