vote up 0 vote down star

Hi Group,

I have a Ruby on Rails (Rails v2.0.2) application which I have developed using Netbeans 6.1 on Mac OS X.

When I tried to run this application this evening (it was working fine this morning) I get the error:

'could not connect to the web server - cannot show http://localhost:3000'

When I try to run the application from terminal using: ./script/server

I get the following error:

=> Booting Mongrel (use 'script/server webrick' to force WEBrick) => Rails application starting on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server ** Starting Mongrel listening at 0.0.0.0:3000 ** Starting Rails with development environment... nil Exiting

Can anyone please help me resolve this issue.

Thanks in advance.

Kind Regards

Walter

flag

17% accept rate
Just curious; is there any reason you're not using Passenger? (modrails.com) I gave up Mongrel long ago... – neezer Oct 15 at 19:53
Hi neezer. Do you think that Passnger would solve this issue? – Walter Lockhart Oct 15 at 19:56
Well, Passenger is just an alternate method of serving your app, so it wouldn't "solve" your issues with Mongrel; you'd use it in place of Mongrel. If you're on a Mac, there's even a preference pane that makes this setup dead-easy (fngtps.com/2008/06/…). – neezer Oct 15 at 20:06
Ahh, you are on a Mac. Should have re-read the question. :) – neezer Oct 15 at 20:07
Hi neezer. Can you help me with this issue? – Walter Lockhart Oct 15 at 20:19
show 1 more comment

1 Answer

vote up 0 vote down

I don't believe there is enough info here to correctly diagnose the issue.

You could try running it with debugging: ruby -d ./script/server. You will probably find an exception being raised shortly before it exits. With a bit of luck the exception will make sense to you.

If that fails, try and narrow the problem scope by running a simple task (rake -T or ./script/runner 'puts "OK"').

Worst case, try starting it up with a full debugger and set a breakpoint on NilClass#to_str / #to_s. That pesky nil in your output is the only clue I can see.

link|flag
I know this is not really an answer, but I needed more space and formatting than the comments allow. – cwninja Oct 15 at 21:34
For the record, I never claimed that passenger would fix anything; just that it would be helpful in determining if the problem lay in Mongrel or in his application code. – neezer Oct 15 at 21:45
Sorry, did not intend to imply that. Amended. – cwninja Oct 15 at 23:12
Thanks cwninja. I'll give that a try. – Walter Lockhart Oct 16 at 12:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.