生产中的 Rails 应用程序不起作用

发布于 2024-08-26 10:31:00 字数 628 浏览 6 评论 0原文

我有一个正在使用 mongrel 运行的 Rails 应用程序,我可以成功启动该应用程序的 mogrel,但是当我尝试访问 URL 上的应用程序时,它没有响应......它只是挂起。

这是杂种日志...但是当我点击 xxx.xxx.xxx.xx:3001 时,它没有显示网站,但在开发人员上工作正常。

** 在 0.0.0.0:3001 开始 Mongrel 监听

** 启动“name.co.za”:“name.co.za”组。

** 将组更改为“name.co.za”。

** 将用户更改为“name.co.za”。

** 在生产环境中启动 Rails...

** Rails 已加载。

** 加载任何 Rails 特定的 GemPlugins

** 信号准备就绪。术语 =>停止。 USR2=>重新启动。 INT=>停止(不重新启动)。

** 已注册 Rails 信号。 HUP=>重新加载(无需重新启动)。可能效果不太好。

** Mongrel 1.1.5 版本为 0.0.0.0:3001

** 将 PID 文件写入 /home/name.co.za/shared/log/mongrel.pid

i have a rails application on production which is running using mongrel, I can successfully start the mogrel for the application but when i try to access the application on the URL it is not responding... it is just hanging.

This is the mongrel log... but when I hit xxx.xxx.xxx.xx:3001 it is not showing the website but on developent is working fine.

** Starting Mongrel listening at 0.0.0.0:3001

** Initiating groups for "name.co.za":"name.co.za".

** Changing group to "name.co.za".

** Changing user to "name.co.za".

** Starting Rails with production environment...

** Rails loaded.

** Loading any Rails specific GemPlugins

** Signals ready. TERM => stop. USR2 => restart. INT => stop (no restart).

** Rails signals registered. HUP => reload (without restart). It might not work well.

** Mongrel 1.1.5 available at 0.0.0.0:3001

** Writing PID file to /home/name.co.za/shared/log/mongrel.pid

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

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

发布评论

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

评论(2

记忆之渊 2024-09-02 10:31:00

端口 3001 可能已被其他进程绑定?

其他解决方案:尝试添加 -a xxx.xxx.xxx.xx 将 mongrel 绑定到 ip-address。

may be port 3001 already bind by other process?

Other solution: try to add -a xxx.xxx.xxx.xx to bind mongrel to ip-address.

痴骨ら 2024-09-02 10:31:00

几个想法:

  • 3001 不是在您的计算机上打开的标准端口 - 据我所知,许多操作系统默认情况下会阻止外部访问。您可能想要找到一台外部计算机,看看是否可以远程登录,或者本地计算机上是否有某些内容阻止外部访问的端口。
  • 一些低端路由器在进行内部连接、查找指向路由器的 IP 并将其返回内部访问时遇到困难。查看您是否可以通过路由器已知的私有 IP 地址(192.168.xx 或其他地址)访问您的计算机。

什么操作系统?

A couple ideas:

  • 3001 is not a standard port to have open on your machine - Many OSs, I know, blocks this by default from external access. You may want to find an external machine and see if you can telnet in, or if there's something on your local machine that blocks the port for external access.
  • Some low end routers have trouble taking internal connections, looking up the IP pointing at the router and turning them around for access back inside. See if you can access your machine on a private IP address known to your router (192.168.x.x or whatever).

What OS?

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