- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
安装我在 Windows Server 2008 上编写的 Rails 3 应用程序的任务令人不快改变环境作为解决方案)。
我按照 this blog post 上的说明进行操作(进行了一些小的修改),经过一番挫折之后,现在实际上让我的应用程序在 Windows/IIS(代理杂种)下启动并运行。剩下的唯一事情就是让 mongrel 作为服务运行。
不幸的是,mongrel gem 没有在 Rails 3 中保持最新,虽然我可以在命令行中让应用程序在 mongrel 下运行,但我无法使用 mongrel_service 让应用程序作为服务运行。
解决方案似乎是使用 service_wrapper this previous question中提到的github上的项目.该项目尚未完成,但显然可以正常运行,但没有文档/二进制文件。我已经查看了源代码,但并不真正了解它是什么/它是如何工作的,所以想知道是否有人可以指出我正确的方向(或者,更好的是,指导我如何安装它。
如此接近,却又如此遥远.....
最佳答案
好的,我已经解决了(在 luislavena 本人的帮助下 - 谢谢)。
从 https://github.com/luislavena/service_wrapper/downloads 下载 service_wrapper-0.1.0-win32.zip并从 bin/中提取 service_wrapper.exe。我把它解压到 C:\service_wrapper。
接下来设置一个配置文件。我使用了 hello 示例并针对我的应用对其进行了修改,然后将其放在 C:\service_wrapper 目录中。
; Service section, it will be the only section read by service_wrapper
[service]
; Provide full path to executable to avoid issues when executable path was not
; added to system PATH.
executable = C:\Ruby192\bin\ruby.exe
; Provide there the arguments you will pass to executable from the command line
arguments = C:\railsapp\script\rails s -e production
; Which directory will be used when invoking executable.
; Provide a full path to the directory (not to a file)
directory = C:\railsapp
; Optionally specify a logfile where both STDOUT and STDERR of executable will
; be redirected.
; Please note that full path is also required.
logfile = C:\railsapp\log\service_wrapper.log
现在只需创建服务
sc create railsapp binPath= "C:\service_wrapper\service_wrapper.exe C:\service_wrapper\service_wrapper.conf" start= auto
(注意 binPath= 和 start= 之后的空格。没有它们将无法工作)
然后开始
net start railsapp
然后你就回家了!
关于ruby-on-rails-3 - 如何在我的 Windows 服务器上为 mongrel/rails 安装这个 service_wrapper?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7630512/
安装我在 Windows Server 2008 上编写的 Rails 3 应用程序的任务令人不快改变环境作为解决方案)。 我按照 this blog post 上的说明进行操作(进行了一些小的修改)
我是一名优秀的程序员,十分优秀!