Plesk Parallels add authorized keys authentication
In Parallels Plesk 9.x, 10.x and 11.x for Linux (in this case CentOS 6.6) there is a bug. You can not authenticate via ssh key or add one f.e. with:
1 |
$> ssh-copy-id -i .ssh/deploy_rsa.pub user@ask-sheldon.com |
Thats why you have to do this: Edit ssh deamon configuration:
1 |
$> sudo nano /etc/ssh/sshd_config |
Add the following line:
1 |
AuthorizedKeysFile %h/private/.ssh/authorized_keys |
Restart the SSH Deamon:
1 |
$> sudo service sshd restart |
Now the […]