Hi Amrit, You cannot run two application on the same port. One of your application is already running using port 3000. And you are trying to run another application on the same port.
If you want to run another application, then use the following command to do that: rub script/server -p 3001 where 3001 is the port number. You choose any other ports also. Ankit On Wed, May 18, 2011 at 2:56 PM, amrit pal pathak <[email protected] > wrote: > I made a new rails app and when i started the server ,it gave > following error message. > > > => Booting Mongrel > => Rails 2.3.8 application starting on http://0.0.0.0:3000 > => Call with -d to detach > => Ctrl-C to shutdown server > Exiting > /usr/lib/ruby/1.8/mongrel/tcphack.rb:12:in > `initialize_without_backlog': Address already in use - bind(2) > (Errno::EADDRINUSE) > from /usr/lib/ruby/1.8/mongrel/tcphack.rb:12:in `initialize' > from /usr/lib/ruby/1.8/mongrel.rb:93:in `new' > from /usr/lib/ruby/1.8/mongrel.rb:93:in `initialize' > from /var/lib/gems/1.8/gems/rack-1.1.0/lib/rack/handler/mongrel.rb: > 10:in `new' > from /var/lib/gems/1.8/gems/rack-1.1.0/lib/rack/handler/mongrel.rb: > 10:in `run' > from /var/lib/gems/1.8/gems/rails-2.3.8/lib/commands/server.rb:111 > from /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in > `gem_original_require' > from /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require' > from script/server:3 > > > > Please help to resolve. > > 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 [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. > > -- 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.

