Skip to content
jpmckinney edited this page Sep 20, 2012 · 5 revisions

SSH Keys

Add your personal public SSH key to the /home/cculture/.ssh/authorized_keys file on the app servers:

ssh -p 7012 cculture@liberia.openlylocal.com
echo "MY_SSH_KEY" >> .ssh/authorized_keys

and:

ssh -p 7012 cculture@nevis.openlylocal.com
echo "MY_SSH_KEY" >> .ssh/authorized_keys

Next, add cculture's public SSH key from each server to your GitHub SSH Keys. To get a copy of these keys, run:

ssh -p 7012 cculture@liberia.openlylocal.com
cat .ssh/id_rsa.pub

and:

ssh -p 7012 cculture@nevis.openlylocal.com
cat .ssh/id_rsa.pub

Note: These server names may change in the future. Check the values of the :app, :web and :backgrounder roles in production.rb.

Clone this wiki locally