我有一个关于将露营网络应用程序作为Windows Server 2008服务运行的问题。 到目前为止,我们已经完成了本文所述:http://www.dixis.com/?p=140,包括Windows Server 2008的步骤。但是,服务启动并运行,但不会触发应用程序。
我们正在使用机架配置文件:
$LOAD_PATH << File.expand_path('..')
require './review'
rack_log = File.new("rack_log_file.txt", "a+")
use Rack::CommonLogger, rack_log
Review.create
run Review
如果我们在命令行中使用命令“thin start
”启动应用程序就可以了。
注册表项设置:
Application=c:\RailsInstaller\Ruby1.9.3\bin\ruby.exe
AppDirectory=c:\camping\review
AppParameters=c:\camping\review\thin start -p 3301
有人可以帮忙解决这个问题吗?
此致 西巴
答案 0 :(得分:0)
我们找到了解决方案。 参数值必须为:
AppParameters=c:\RailsInstaller\Ruby1.9.3\bin\thin start -p 3301
露营应用程序现在作为Windows Server 2008服务运行:)
的问候, 西巴