Mike Schuh wrote:
Does the ~user/.ssh directory (or its contents) need a specific mode?
I had a similar problem with ssh. Permissions matter. Things started working after I did the following.
From my notes, on the machine running sshd, as a regular user, ... $ chmod 700 ~/.ssh $ cat id_rsa.pub > ~/.ssh/authorized_keys $ chmod 600 ~/.ssh/authorized_keys where id_ras.pub was created earlier using $ ssh-keygen -t rsa -b 4096 Mat
