Using a private key to connect on your Linux servers
Why using a Private key to connect on your Linux servers? This will prevent you entering the password each time you want to connect via SSH on your Linux server. On the server On your Linux server as root we're going to create a new user # adduser NEWUSERNAME Connect as NEWUSERNAME # su NEWUSERNAME Generating an authentiction key $ ssh-keygen -b 1024 -f MyKEY -t dsa This will generate one public key "MyKEY. ...
Read more ›
