I''m on a Win2K server environnement running ruby 1.8.5 and mongrel I''ve followed the tutorial and everything went fine until I start the service... Here is the output I''m getting : C:\ruby\bin??>mongrel_rails service::start -N inventaire One moment, start pending One moment, stopped One moment, stopped One moment, stopped One moment, stopped One moment, stopped .... and so on ( "One moment, stopped" message keeps popping) any idea? Guillaume Carbonneau -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060830/1c1d07a7/attachment.html
On 8/30/06, Guillaume Carbonneau <gusxedge at gmail.com> wrote:> > I''m on a Win2K server environnement running ruby 1.8.5 and mongrel > > I''ve followed the tutorial and everything went fine until I start the > service... > > Here is the output I''m getting : > > C:\ruby\bin??>mongrel_rails service::start -N inventaire > One moment, start pending > One moment, stopped > > One moment, stopped > > One moment, stopped > > One moment, stopped > > One moment, stopped > .... > and so on ( "One moment, stopped" message keeps popping) > > any idea? >Hi Guillaume, That often means your application crashed. Have you tried running it with mongrel_rails first? Mongrel is compatible with 1.8.4, no official testing was made with 1.8.5, nor for Rails (which seems to brake some things). As I said, try running from command line "mongrel_rails start" and check if your application start ok, if so, the problem could be checked from the log/service.log file into your application directory. Hope that helps, -- Luis Lavena Multimedia systems - Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. Vince Lombardi
On 8/30/06, Guillaume Carbonneau <gusxedge at gmail.com> wrote:> > I''m on a Win2K server environnement running ruby 1.8.5 and mongrel > > I''ve followed the tutorial and everything went fine until I start the > service... > > Here is the output I''m getting : > > C:\ruby\bin??>mongrel_rails service::start -N inventaire > One moment, start pending > One moment, stopped > > One moment, stopped > > One moment, stopped > > One moment, stopped > > One moment, stopped > .... > and so on ( "One moment, stopped" message keeps popping) > > any idea?Look in the log/service.log I suspect there is an exception. I''ve heard of two possible problems with rails and 1.8.5: One, the breakpointer works no more, and other is deprecation of when XXX: YYY over when XXX; YYY or when XXX then YYY. Start the thing as normal rails app with mongrel or webrick to see more of the problem until it works fine. (non-service version has obviously shorter roundtrip edit-start-crash-diagnose)
Definitely try it with mongrel_rails start first. For me, my server was missing the version of Rails that my app was expecting. -- -- Jay Turpin "One test is worth a thousand expert opinions." - Bill Nye (The Science Guy) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060830/2fdd4a4f/attachment.html
hey Thanks guys The problem was with a conflict of versions with my rails project and the rails gem on the deployement server. I love this community Thanks again Guillaume Carbonneau On 8/30/06, Jay Turpin <jay.turpin at gmail.com> wrote:> > Definitely try it with mongrel_rails start first. For me, my server was > missing the version of Rails that my app was expecting. > > -- > -- Jay Turpin > "One test is worth a thousand expert opinions." - Bill Nye (The Science > Guy) > > _______________________________________________ > Mongrel-users mailing list > Mongrel-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users > >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060831/099abab6/attachment.html