Generate publickeyssh-keygen in your PC by default. If everything is normal, two files should be generated: id_rsaid_rsa.pub. One is the private key, the other is the public key, and the public key file id_rsa.pub is copied to the Ubuntu server, and then imported to the user who needs to log on. For example, if you use the root user to log on to the ssh server, you can import the/root/. ssh directory. Catid_rsa.pub & gt; & gt
First, generate a public key in your PC.
Ssh-keygen
Generate by default. If everything is normal, two files should be generated:
Id_rsa
Id_rsa.pub
One is the private key and the other is the public key. The public key file id_rsa.pub is copied to the Ubuntu server and then imported to the user who needs to log on.
For example, if you use the root user to log on to the ssh server, you can import the/root/. ssh directory.
Cat id_rsa.pub> authorized_keys
In this way, you can log on to ssh without entering the password.
Ssh root @ ssh-server