prakash saud wrote: > hello, everybody > Actually i am new to capistrano. I have installed ruby 1.8.6, Rails > 2.3.4 and my OS is ubuntu . I have made a rails application. I went > through the getting started and everything went fine upto check > dependency. when i tried to install mongrel, it gives message > "Successfully installed mongrel-1.1.5" but when i tried mongrel -v it > gives message "bash: mongrel: command not found" and i am unable to do > cap deploy:update. I am not getting what is going wrong, is it with my > machine , its architecture is 64 bit, can anyone help me. > prakash > > This message about "command not found" is in local or remote(when you executes capistrano)? Mongrel should be installed in the server.
Another thing the command is mongrel_rails and you're trying to use mongrel. If don't works check where's the command (which mongrel_rails) and add the path to PATH or include it in run command. Anyway, you can check dependencies with capistrano: |depend :remote, :gem, "mongrel"| Regards -- Rafa -- * You received this message because you are subscribed to the Google Groups "Capistrano" group. * To post to this group, send email to [email protected] * To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano?hl=en
