我为生产服务器安装了新的ec2-instance
当我在当前文件夹中尝试以下命令时
[ec2-user@ip-xx-xxx-xxx-xxx current]$ rvmsudo unicorn_rails -c config/unicorn/production.rb
-D --env production
sudo: unicorn_rails: command not found
请让我知道如何启动在端口80上运行的生产服务器。
提前致谢
答案 0 :(得分:0)
你不必使用rvmsudo和all来启动你的独角兽应用服务器。你可以做到
bundle exec unicorn -D -c /path/to/app/unicorn.rb -E production
答案 1 :(得分:0)
对于端口80:首次运行
export rvmsudo_secure_path=1
然后
rvmsudo unicorn_rails -c config/unicorn/production.rb -D --env production
它肯定会起作用