Actions
How to access servers with ssh¶
You can connect to the host with ssh as the following.
If you named your key differently you need to replace `id_rsa` with your key name.
ssh -i ~/.ssh/id_rsa user@your_host_ip
By default ssh uses id_rsa key, so you can avoid `-i ~/.ssh/id_rsa`.
ssh user@your_host_ip
Updated by Sanghee Kim over 5 years ago · 6 revisions