无法在 Ubuntu AMI 上通过 Rails 上的 webrick 绑定地址

发布于 2024-10-26 06:20:12 字数 190 浏览 1 评论 0原文

我已经在 linux (ubuntu)ami 上安装了 Rails。我正在尝试绑定用于访问 linux ami 的 IP,但无法绑定它。“无法分配请求的地址 - bind(2) (Errno::EADDRNOTAVAIL)” 全导轨设置似乎没问题。 我在这里缺少一些东西。确切的需求是通过不同的电脑访问rails应用程序。

请给我指出一些参考文献。

I have got rails setup on linux (ubuntu)ami. I am trying to bind the ip used to access linux ami but am not able to bind it." Cannot assign requested address - bind(2) (Errno::EADDRNOTAVAIL) "
Full rails setup seems to be fine.
Am missing something here. The exact need is to access the rails app through different pc.

Plz point me to some ref.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以笙箫默 2024-11-02 06:20:12

我可能不完全理解您的请求,但在特定端口上启动您的 Rails 服务器:

rails s -p 3000 #rails 3
script/server -p 3000 #rails 2

那么您应该能够通过以下方式在不同的电脑上访问它:

http://yourmachinename:3000

如果新电脑位于同一网络上。否则,请查看您的防火墙设置并打开端口 3000 并将其指向您计算机的本地 IP(您可以从 ifconfig 获取此信息)。然后获取本地网络的外部IP并转到:

http://your.external.ip:3000/

I may not be fully understanding your request but starting your rails server on a particular port:

rails s -p 3000 #rails 3
script/server -p 3000 #rails 2

Then you should be able to access this on a different pc by going to:

http://yourmachinename:3000

If new Pc is on the same network. Otherwise have a look at your firewall settings and open up port 3000 and point it to the local IP of your machine (you can get this from ifconfig). Then get the external IP of your local network and go to:

http://your.external.ip:3000/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文