I have since gone on site, and followed the directions below, I have modified them some:
Essentially you need to be able to access the remote host (the server) then type the following comands:
(First check if you have a ".ssh" folder in your home directory. If not you can type these these commands: )
1. Generate a Key Pair
cd ~
ssh-keygen
When it asks you to “Enter the file in which to save the key”, type “id_rsa” and hit enter.
Hit enter without typing a passphrase for the next two questions.
Then enter the command:
cat .ssh/id_rsa >> .ssh/authorized_keys
This will append the contents of the file "id_rsa" into the file "authorized_keys".
2. Copy the Keys to Your Machine
You can cat the contents out the files and copy and paste the text into 2 files, but I ended up using SFTP to get them off.
cat .ssh/id_rsa
Copy the contents of this into a text file named "id_rsa" to your local machine.
cat .ssh/id_rsa.pub
Copy the contents of this into a text file named "id_rsa.pub" to your local machine.
3. Load the local files "id_rsa" and "id_rsa.pub" into Chrome Secure Shell
Now close the chrome SSH window, and launch the app again.
This time, before logging on, click the “Import...” button next to the “Identity” line:
In the file window, select both the id_rsa and id_rsa.pub files, and click “Open”.
Now your Identity should read “id_rsa” instead of “[default]“.
4. Log in Again
It should work, but when I go offsite I plan to confirm it.