Here we will cover how to SSH into a Cloud VPS server.
Forming a secure socket shell (SSH) connection allows complete control over the server through the command line. Once an SSH connection has been established, commands can be run, and the server can be controlled through the bash language by default.
Related Articles
Manage SSH Keys for Cloud Server
Generating SSH Keys on Local Computer
Form SSH Connection to Server
- Generate SSH Keys on the local computer
- Add the public key in Manage SSH Keys in the Account Management Panel
- In the terminal that is being used for the connection, run the command determined by how you generated the SSH keys
- PuttyGen
cat ~/.ssh/id_rsa.ppk
- Powershell/MacOS/Unix
cat ~/.ssh/id_rsa
- This will ensure that the server sees the private key
- PuttyGen
- Run this command next:
cat ~/.ssh/id_rsa.pub
- This allows you to double-check that the public key that was placed in your Account Management Panel (AMP) is correct
- This allows you to double-check that the public key that was placed in your Account Management Panel (AMP) is correct
- Lastly, run this command to SSH into the server:
ssh -i ~/.ssh/id_rsa root@vps####.inmotionhosting.com
REPLACE: #### with the specific VPS server number.
TIP: The VPS server number can be found in your AMP by clicking the Account Technical Details icon and looking at the Server field.
Comments
0 comments
Article is closed for comments.