本文介绍了启动Windows上的薄集群的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有我的机器上的红宝石应用程序,我想用一个批处理脚本部署。我得一切都交给处理的服务器。这是我使用的是什么:
I have a ruby app on my machine that I'm trying to deploy with a batch script. I've got everything up to the server handled. This is what I'm using:
cd to/path/of/app
thin start -p 3001
这工作。
cd to/path/of/app
thin start --servers 3
根据,不能正常工作。我得到一个错误的lib /超薄/ runner.rb:142:在解析!':无效选项:--servers
As per http://code.macournoyer.com/thin/usage/, does not work. I get an error "lib/thin/runner.rb:142:in 'parse!': invalid option: --servers"
任何想法,这是为什么不工作?
Any idea why this isn't working?
推荐答案
在行88 的lib /超薄/ runner.rb
它说# Daemonizing不支持Windows
:(
这篇关于启动Windows上的薄集群的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!