On 14 March 2011 21:39, Manny 777 <[email protected]> wrote: > I've a big problem -- I come now PC and started rails server and I got > this huge report of errors. The rails server is not running, I've any > idea, what is wrong. Yesterday everything worked yet... > > The statement after command "rails server" is here: > > => Booting Mongrel > => Rails 3.0.5 application starting in development on > http://0.0.0.0:3000 > => Call with -d to detach > => Ctrl-C to shutdown server > Exiting > /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/tcphack.rb:12:in > `initialize_without_backlog': Address already in use - bind(2) > (Errno::EADDRINUSE)
This is the error that you're looking for. It means that another process (perhaps your rails server from yesterday?) is still listening on port 3000, so your new server can't bind to it. You can either: * find the old server process and terminate it; or * start the new server on a different port (for example: rails server -p 3001). Chris -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

