We have a 3 environment deployment setup to Dev, Stage, and Production boxes. For some reason, the production deployment is painfully slow. It hangs on the ''subversion is asking for a password'' line for about 4 minutes, then finally prompts... I''m running it in verbose mode but I don''t have any indication as to why this is taking so long... any ideas? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
blinking bear wrote:> We have a 3 environment deployment setup to Dev, Stage, and Production > boxes. For some reason, the production deployment is painfully slow. > It > hangs on the ''subversion is asking for a password'' line for about 4 > minutes, > then finally prompts... I''m running it in verbose mode but I don''t have > any > indication as to why this is taking so long... any ideas? > > ThanksCould be DNS lookups that timeout. Does a normal ssh take long to the box? The process is probably waiting for something and eventually times out. How do you check out your code from the svn repository? This could take a long time when (reverse) DNS isn''t setup correctly. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Try logging in to each machine with the user account you use for svn and then doing svn ls path_to_your_repository This should prompt you for the password and then cache it. The deployment shouldn''t ask for it again next time. That''s how we do it. One other thing I do that helps is to ensure I''m using svn export instead of svn checkout. On 7/24/07, Wouter De bie <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > > blinking bear wrote: > > We have a 3 environment deployment setup to Dev, Stage, and Production > > boxes. For some reason, the production deployment is painfully slow. > > It > > hangs on the ''subversion is asking for a password'' line for about 4 > > minutes, > > then finally prompts... I''m running it in verbose mode but I don''t have > > any > > indication as to why this is taking so long... any ideas? > > > > Thanks > > Could be DNS lookups that timeout. Does a normal ssh take long to the > box? The process is probably waiting for something and eventually times > out. How do you check out your code from the svn repository? This could > take a long time when (reverse) DNS isn''t setup correctly. > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---