Linux Note
SSH
1 | ssh -i <path-to-pem> admin@<ip/dns> |
Local Port Forwarding:
1 | ssh -i <path-to-pem> -l admin <ip/dns> -L 9999:localhost:9999 |
SCP
1 | scp -i <path-to-pem> <path-to-source-file> admin@<ip/dns>:/home/admin/<path-to-target-file> |
Auto-start after reboot
1 | $ systemctl enable docker |