Hello everyone 
I have to implement a stronger login security to my server. So I decided to use SSH private key authentication. My question is: do I need a public and private key for each individual user on the server or do I use the same key for everyone? Last question is: can any user run this command or does it have to be root?
Thank you all.
Fred
I have to implement a stronger login security to my server. So I decided to use SSH private key authentication. My question is: do I need a public and private key for each individual user on the server or do I use the same key for everyone? Last question is: can any user run this command or does it have to be root?
Code:
mkdir .ssh
chmod 700 .ssh
cd .ssh
cat ../id_rsa_mydesktop.pub >> authorized_keys
Thank you all.
Fred