How do I SSH into my VPS? (OS X/Terminal)

If you are on a Mac, SSH-ing into your VPS is very simple. Simply launch "Terminal" by going to your Applications folder, then Utilities, and then double click the application named Terminal. 

From there you will be presented with a Terminal window. Type in:

ssh root@YOUR_IP_ADDRESS

and hit enter. If this is the first time connecting to your VPS, you will be asked whether or not you are sure you want to connect. Simply type "yes" and hit enter once more.

Then, you will be asked for your root password. Type that in, hit enter, and you now have access to your VPS.

If you are unsure about your root password, you may reset it from the VPS control panel

Feel free to open a ticket if you need any help accessing your VPS.
  • 119 Users Found This Useful
Was this answer helpful?

Related Articles

How to find user memory usage in linux

How to find user memory usage in linux Finding out who/what is using the most memory is...

How to install Tomcat6 Server on Centos6

How to install Tomcat6 Server on Centos6 Tomcat is an Opensource webserver and used for Java...

Expand your bash history to 2500

Expand your .bash_history to 2500 I do alot of testing and alot of work on Centos servers. I...

Setup a SSH Tunnel for Secure Browsing

Setup a SSH Tunnel to Secure your Browsing on a Public Network Have you been sitting at your...

CentOS One Liner Commands

Centos Oneliners kill all pts for x in $(ps aux | grep pts| awk '{print $2}'); do kill...