SSH does not allow the use of a key with group readable permissions
Posted
by
scjr
on Server Fault
See other posts from Server Fault
or by scjr
Published on 2012-09-11T07:47:51Z
Indexed on
2012/09/11
9:40 UTC
Read the original article
Hit count: 243
I have a development git server that deploys to a live server when the live
branch is pushed to.
Every user has their own login and therefore the post-receive
hook which does the live deployment is run under their own user.
Because I don't want to have to maintain the users public keys as authorized keys on the remote live server I have made up a set of keys that 'belong's to the git system to add to remote live servers (In the post-receive
hook I am using $GIT_SSH
to set the private key with the -i
option).
My problem is that because of all the users might want to deploy to live, the git system's private key has to be at least group readable and SSH really doesn't like this.
Here's a sample of the error:
XXXX@XXXX /srv/git/identity % ssh -i id_rsa XXXXX@XXXXX
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0640 for '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: id_rsa
I've looked around expecting to find something in the way of forcing ssh to just go through with the connection but I've found nothing but people blindly saying that you just shouldn't allow access to anything but a single user.
© Server Fault or respective owner