@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@The problem is that chmod wouldn't actually change the permissions so I couldn't get past this problem. When I searched on this I found refernces to turning StrictMode off but that didn't work for me can caused errors.
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for '//turfclub/users/jstauffe/.ssh/id_rsa' are too open.
It is recommended that your private key files are NOT accessible by others.
This private key will be ignored.
bad permissions: ignore key: //turfclub/users/jstauffe/.ssh/id_rsa
To fix this I did the following:
- Started my bash shell
- mkdir /home
- mkdir /home/.ssh
- cp ~/.ssh/* /home/.ssh
- chmod 600 /home/.ssh/*
- mv ~/.ssh ~/.ssh.bak
- cd ~
- ln -s /home/.ssh
It now works great (even in the normal Windows shell)!
1 comment:
Worked perfectly for me too
Post a Comment