TIL: Using a public key to login

This commit is contained in:
Asocia 2021-05-14 17:17:54 +03:00
parent 48074f4ba8
commit 0de2bb0d65

View File

@ -0,0 +1,13 @@
You can generate authentication keys and use it with ssh to login. First run the below command if you don't have any (it won't overwrite if you already have one):
```
ssh-keygen
```
Then copy your public key to remote server with this:
```
ssh-copy-id name@host
```
From now on, you should be able to login with `ssh name@host` without having to enter your password.