Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 273 Bytes

ssh-server.md

File metadata and controls

13 lines (7 loc) · 273 Bytes

Login to a remote server using SSH client

ssh -i {{KEY_FILE}} {{USER}}@{{IP}}

  • KEY_FILE: *.pem file for authentication
  • USER: Username for login to the remote machine
  • IP: IP of the machine

Example

ssh -i key.pem arshad@127.0.0.1