Actions
How to access servers with ssh » History » Revision 1
Revision 1/6
| Next »
Jin-Guk Kwon, 08/15/2019 01:47 PM
How to access servers with ssh¶
You can connect to the host with ssh as the following.
If you named your key diferently, you need to replace `id_rsa` with your key name.
ssh -i ~/.ssh/id_rsa user@our_host_ip
By default ssh use id_rsa key, so we can avoid `-i ~/.ssh/id_rsa` so, we can use
ssh user@our_host_ip
Updated by Jin-Guk Kwon over 5 years ago · 1 revisions