Project

General

Profile

Actions

How to access servers with ssh » History » Revision 2

« Previous | Revision 2/6 (diff) | Next »
Jin-Guk Kwon, 08/15/2019 01:50 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@your_host_ip

By default ssh use id_rsa key, so you can avoid `-i ~/.ssh/id_rsa` so, you can use
ssh user@your_host_ip

Updated by Jin-Guk Kwon over 4 years ago · 2 revisions