19

我添加Gem 'unicorn'到 Gemfile 并调用rails server unicorn -e production,但出现加载错误。然后我添加Gem 'unicorn_rails',然后调用rails server unicorn -e production,但我找不到套接字文件。所以我正在考虑它是否不使用该config/unicorn.rb文件作为配置?所以我打电话unicorn_rails -c config/unicorn.rb -E production -D,但我得到另一个错误text file busy

所以现在我被这件事困住了,你能帮帮我吗?:)

4

3 回答 3

36

它应该是这样的:

bundle exec unicorn -E production -c config/unicorn.rb

你应该只需要unicorngem

于 2013-07-01T17:12:37.493 回答
5

bundle exec unicorn -p $PORT -c ./config/unicorn.rb

为我工作

我把它放在 Procfile 中,然后使用Foreman通过输入来启动它

foreman start

于 2013-07-01T17:14:12.627 回答
0
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb

service unicorn_projectName start

为我工作

于 2014-07-15T12:24:12.863 回答