我正在尝试使用Amazon Linux和Ansible在Amazon EC2上安装RoR服务器。一切都很顺利,最后我无法运行独角兽。我已经检查过安装了独角兽宝石
`gem list | grep unicorn`
安装了独角兽。
当我输入
`unicorn_rails`
我找不到命令错误。我检查了我的gem文件,它有行gem unicorn
然后我运行bundle install
,输出列表中有unicorn
。仍然无法运行它。
感谢。
答案 0 :(得分:0)
答案 1 :(得分:0)
我不确定你可以运行unicorn_rails
。只需使用:
bundle exec unicorn -p <port> -c <path_to_config_file>
例如:
bundle exec unicorn -p 3000 -c ./config/unicorn.rb