我有一个rails应用程序,我试图使用Capistrano部署到ec2实例。我的deploy.rb
:
set :application, "uc_social_server"
set :repository, "septerr@bitbucket.org/urbancoding/uc_social_server.git"
set :user, "ec2-user"
server "ec2-23-22-188-11.compute-1.amazonaws.com", :app, :web, :db, :primary => true
set :deploy_to, "/home/ec2-user/uc_social_server"
ssh_options[:keys] = %w(/Users/sony/.ssh/ec2-social-server-key.pem)
default_run_options[:pty] = true
正在运行cap deploy:check
失败:
The following dependencies failed. Please check them and try again:
--> You do not have permissions to write to `/home/ec2-user/uc_social_server/releases'. (ec2-23-22-188-11.compute-1.amazonaws.com)
我已经尝试了一些我在stackoverflow上找到的解决方案但没有成功。使用capistrano部署到ec2的正确方法是什么?
答案 0 :(得分:5)
终于找到了问题。
默认情况下, cap deploy:setup
使root用户成为其创建的文件夹的所有者。
因此,在运行cap deploy:setup
之前,您必须记住将set :use_sudo, false
添加到deploy.rb(或您正在使用的capistrano脚本文件)。
如果像我一样,您已经运行了setup命令,导致releases
和shared
文件夹具有root权限,
set :use_sudo, false
添加到您的capistrano脚本(deploy.rb in
我的情况)cap deploy:setup
现在,capistrano应该使用您在capistrano脚本中指定的用户作为所有者创建releases
和shared
个文件夹。
cap deploy:check
现在应该会成功。