I am using capistrano to deploy my rails application. When I run:
cap deploy:update_code
It prompts me for my svn server password, I enter it, then it says it
is executing a check out. Then after that, it prompts me for my
password for the web server. The username for both server's are the
same. Then it just pauses for a little while, then spits out:
** [err] ssh: connect to host
svn.domain.com port 22: Connection timed
out
** [err] svn: Connection closed unexpectedly
command finished
I am able to run:
cap deploy:setup with no problem and setup my directory structure. I
also ran:
cap -q deploy:check and it returns You appear to have necessary
dependencies installed
I am able to reach and co a working copy of my project with my dev
machine using the svn+ssh protocol. One note, my svn server and web
server are the same server. I don't have separate servers running
each one. I am new to Capistrano and I am not sure how the internals
work.
Thanks for any advice.