Every time I run 2 rails servers on different ports, say 3000 and 3001.
After starting the server on port 3000
Rails$ rails s -p 3000 => Booting Mongrel => Rails 3.1.1 application starting in development on http:
when I start the second rail server on port 3001,
Rails$ rails s -p 3001 => Booting Mongrel => Rails 3.1.1 application starting in development on http:
I need to delete the server.pid file before I can start the rails server on port 3001. Is there a way to avoid this deleting the file every time?
source share