I am trying to connect to my linux server using the following:
ssh-keygen -t rsa
I then do:
cat ~/.ssh/id_rsa.pub | ssh myusername@myserver_ip 'cat >> .ssh/authorized_keys'
I then go to my remote server and see that a "authorized_keys" file has been created. However when i try doing, "ssh myusername@myserver_ip", it is still prompting me for a password?
Why???