Connecting to the Server
# SSH into your server
# something like ssh root@000.00.000.000
ssh root@YOUR_IP
# Exit the server
exit
If you're denied, it's likely that you don't have your SSH keys loaded. Look for a "Permission Denied (publickey)" error. You could specify a key while SSHing, or include the key in your keychain via your SSH config file.
# specify an SSH key
ssh -i fsfe2 root@000.00.000.000
# Or list the key in your config
vim ~/.ssh/config
### At the top of ~/.ssh/config, add:
# Host *
# AddKeysToAgent yes
# UseKeychain yes
###
# Add private key to keychain
ssh-add -K ~/.ssh/fsfe2