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的可移植版本。
答案 0 :(得分:3)
0.0.0.0
只是意味着它正在侦听机器拥有的所有地址。请尝试浏览http://localhost:3000/
。