如何在localhost / <my_port>上运行Rails 3应用程序?

要在Windows上运行Rails应用程序,我需要:

  • cd <app_dir>
  • 导轨服务器

我看到以下内容:

=> Booting WEBrick => Rails 3.0.1 application starting in development on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server [2011-01-12 20:32:07] INFO WEBrick 1.3.1 [2011-01-12 20:32:07] INFO ruby 1.9.2 (2010-08-18) [i386-mingw32] [2011-01-12 20:32:07] INFO WEBrick::HTTPServer#start: pid=5812 port=3000 

问题1

为什么select3000端口? 它在哪里configuration?

问题2

我怎么能并行运行2个应用程序? 我想我需要configuration其中一个在其他端口(如3001)。 我应该怎么做?

端口3000是webrick在rails中的默认值。 要更改端口,您可以运行rails server -p 3001

运行rails server -h列出所有可能的参数。