How to access servers with ssh » History » Revision 2
Revision 1 (Jin-Guk Kwon, 08/15/2019 01:47 PM) → Revision 2/6 (Jin-Guk Kwon, 08/15/2019 01:50 PM)
h1. 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. <pre> ssh -i ~/.ssh/id_rsa user@your_host_ip user@our_host_ip </pre> By default ssh use id_rsa key, so you we can avoid `-i ~/.ssh/id_rsa` so, you we can use <pre> ssh user@your_host_ip user@our_host_ip </pre>