0

I am currently using application which is developed using JRuby on Rails. I have created application which heavily depends on JRuby internals. Now I am looking to host the application in dedicated server using Windows platform. Can anyone tell how we can host the application using JRuby on rails. There is a possiblity of doing it ruby on rails. We can use it Apache/IIS7. But there are no specific details given regarding how to do develop in JRuby on rails Windows based platform using Apache/IIS7. Can anyone help me how to host JRuby on rails in dedicated server ?

4

2 回答 2

1

您可以使用 Trinidad 部署 Jruby on Rails 应用程序。Trinidad 使用 Apache Tomcat 作为它的应用程序服务器,并且 Tomcat 嵌入在 Jruby gem 中,因此您无需在应用程序之外托管/管理您自己的 Tomcat 实例。

https://github.com/trinidad/trinidad

最简单的应用程序(来自您的 rails 应用程序根目录的命令行):

jruby -S gem 安装特立尼达 jruby -S 特立尼达

于 2011-03-13T05:01:02.290 回答
0

Trinidad 是一个很好的解决方案,但我发现如果您在 Windows 平台上托管,更好的解决方案可能是战争文件部署。使用 Warbler gem https://github.com/jruby/warbler创建一个简单的war 文件,然后将其部署到tomcat 服务器。这似乎对 Windows 生态系统更有效——特别是如果有一个现有的 tomcat 服务器或涉及争论的 Ops 人员。

为了超级易用,特立尼达。对于现有的 Windows 世界和管理员、tomcat 和 war 文件。

于 2013-02-05T05:51:12.017 回答