Rails-教程:cloud9 服务器不是 运行
Rails-tutorial: cloud9 server not running
我正在阅读 rails 教程。我在第 1 章第 1.3.2 节。
https://www.railstutorial.org/book/beginning#sec-the_hello_application
在我运行命令之后
rails server -b $IP -p $PORT
我看到以下内容:
=> Booting Puma
=> Rails 5.0.0.1 application starting in development on http://0.0.0.0:8080
=> Run rails server -h
for more startup options
Puma starting in single mode...
Version 3.4.0 (ruby 2.3.0-p0), codename: Owl Bowl Brawl
Min threads: 5, max threads: 5
Environment: development
Listening on tcp://0.0.0.0:8080
Use Ctrl-C to stop
终端在 http://0.0.0.0:8080 上说它是 运行,但是当我访问这个 URL 时,我得到以下错误:
ERR_ADDRESS_INVALID
我对 Rails 完全陌生。我能做些什么来解决这个问题?
不要尝试通过 rails returns 给你的 IP 地址和端口号来访问项目 -- 它不会工作!
尝试rails server -b $IP -p $PORT
如需进一步说明,请查看此 link
该应用程序将于 http://[your_workspacename]-[your_username].c9users.io运行
我正在阅读 rails 教程。我在第 1 章第 1.3.2 节。 https://www.railstutorial.org/book/beginning#sec-the_hello_application
在我运行命令之后
rails server -b $IP -p $PORT
我看到以下内容:
=> Booting Puma
=> Rails 5.0.0.1 application starting in development on http://0.0.0.0:8080
=> Run
rails server -h
for more startup optionsPuma starting in single mode...
Version 3.4.0 (ruby 2.3.0-p0), codename: Owl Bowl Brawl
Min threads: 5, max threads: 5
Environment: development
Listening on tcp://0.0.0.0:8080
Use Ctrl-C to stop
终端在 http://0.0.0.0:8080 上说它是 运行,但是当我访问这个 URL 时,我得到以下错误:
ERR_ADDRESS_INVALID
我对 Rails 完全陌生。我能做些什么来解决这个问题?
不要尝试通过 rails returns 给你的 IP 地址和端口号来访问项目 -- 它不会工作!
尝试rails server -b $IP -p $PORT
如需进一步说明,请查看此 link
该应用程序将于 http://[your_workspacename]-[your_username].c9users.io运行