1
c:\mowes\www\rails_projects\first_app>rails s
=> Booting WEBrick
=> Rails 4.0.0 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
[2013-10-17 16:49:22] INFO  WEBrick 1.3.1
[2013-10-17 16:49:22] INFO  ruby 1.9.3 (2012-04-20) [i386-mingw32]
[2013-10-17 16:49:22] INFO  WEBrick::HTTPServer#start: pid=11400 port=3000

当我去0.0.0.0:3000我得到这个 找不到服务器

我没有使用 RailsInstaller,而是使用了 Ruby 和 Rails 的便携版本。

4

1 回答 1

3

0.0.0.0只是意味着它正在侦听机器拥有的所有地址。尝试浏览到http://localhost:3000/

于 2013-10-17T15:57:38.887 回答