通过sftp上限部署上传失败

时间:2012-11-13 18:29:18

标签: ruby-on-rails capistrano web-deployment

美好的一天!我会尝试对此非常具体。对不起,我在尝试部署应用程序时遇到了很多麻烦。我对rails非常陌生,所以我跟着使用Rails第4版的敏捷Web开发,我被困在了使用capistrano部署的部分我已经尝试了书中的确切代码,没有用,并且拿了一些来自这个和其他论坛的建议证明是有帮助的,但我仍然无法正确部署我的deploy.rb是这样的:

require 'bundler/capistrano'

set :user, 'user_created_for_this_example'

set :domain,  'IPADDRESS'

set :application, 'depot'

# file paths

set :repository,  "#{user}@#{domain}:depot.git"

set :deploy_to, "/home/#{user}/#{domain}"

# set :scm, :git # You can set :scm explicitly or Capistrano will make an intelligent guess 
based on known version control directory names

# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`

#roles server

role :web, domain

role :app, domain

role :db, domain, :primary => true

#deploy config

set :deploy_to, "/home/#{user}/#{domain}"

set :deploy_via, :copy

set :scm, 'git'

set :branch, 'master'

set :scm_verbose, true

set :use_sudo, false 


# if you want to clean up old releases on each deploy uncomment this:
# after "deploy:restart", "deploy:cleanup"

# if you're still using the script/reaper helper you will need
# these http://github.com/rails/irs_process_scripts

# If you are using Passenger mod_rails uncomment this:

namespace :deploy do

  task :start do ; end

  task :stop do ; end

  task :restart, :roles => :app, :except => { :no_release => true } do

    run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"

  end

end

after "deploy:update_code", :bundle_install

desc "install the necesary prerequisites"

task :bundle_install, :roles => :app do

  run "cd #{release_path} && bundle install"

end

当我运行cap deploy:setup和cap deploy:check all似乎工作正常:

~/rails_projects/depot$ cap deploy:setup

  * 2012-11-13 10:37:35 executing `deploy:setup'

  * executing "mkdir -p /home/git/xx.xx.xx.xx /home/git/xx.xx.xx.xx/releases /home/git
/xx.xx.xx.xx/shared /home/git/xx.xx.xx.xx/shared/system /home/git/xx.xx.xx.xx/shared/log 
/home/git/xx.xx.xx.xx/shared/pids"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 158ms

  * executing "chmod g+w /home/git/xx.xx.xx.xx /home/git/xx.xx.xx.xx/releases /home/git/xx.xx.xx.xx/shared /home/git/xx.xx.xx.xx/shared/system /home/git/xx.xx.xx.xx/shared/log /home/git/xx.xx.xx.xx/shared/pids"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 7ms

~/rails_projects/depot$ cap deploy:check

  * 2012-11-13 10:37:39 executing `deploy:check'

  * executing "test -d /home/git/xx.xx.xx.xx/releases"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 152ms

  * executing "test -w /home/git/xx.xx.xx.xx"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 5ms

  * executing "test -w /home/git/xx.xx.xx.xx/releases"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 5ms

  * executing "which tar"

    servers: ["xx.xx.xx.xx"]

    [xx.xx.xx.xx] executing command

    command finished in 6ms

You appear to have all necessary dependencies installed

但是当上限部署时:迁移,上限部署或上限部署:下一个弹出命令会出现冷命令:

~/rails_projects/depot$ cap deploy:migrations

  * 2012-11-13 10:37:42 executing `deploy:migrations'

  * 2012-11-13 10:37:42 executing `deploy:update_code'

    executing locally: "git ls-remote git@xx.xx.xx.xx:depot.git master"

    command finished in 241ms

  * getting (via checkout) revision c3f88ca97e5868dd476f20e9a044b7dad800274a to /tmp/20121113173743

    executing locally: git clone git@xx.xx.xx.xx:depot.git /tmp/20121113173743 && cd /tmp/20121113173743 && git checkout -b deploy c3f8
8ca97e5868dd476f20e9a044b7dad800274a

Cloning into '/tmp/20121113173743'...

remote: Counting objects: 392, done.

remote: Compressing objects: 100% (257/257), done.

remote: Total 392 (delta 111), reused 392 (delta 111)

Receiving objects: 100% (392/392), 8.59 MiB, done.

Resolving deltas: 100% (111/111), done.

Switched to a new branch 'deploy'

    command finished in 769ms

  * Compressing /tmp/20121113173743 to /tmp/20121113173743.tar.gz

    executing locally: tar czf 20121113173743.tar.gz 20121113173743

    command finished in 652ms

    servers: ["xx.xx.xx.xx"]

 ** sftp upload /tmp/20121113173743.tar.gz -> /tmp/20121113173743.tar.gz

    [xx.xx.xx.xx] /tmp/20121113173743.tar.gz

*** upload via sftp failed on xx.xx.xx.xx: Net::SFTP::StatusException 
(Net::SFTP::StatusException open /tmp/20121113173743.tar.gz (3, "permission denied"))

upload via sftp failed on xx.xx.xx.xx: Net::SFTP::StatusException (Net::SFTP::StatusException open /tmp/20121113173743.tar.gz (3, "permission denied"))

我很抱歉,如果这是一个虚拟问题,一个简单修复或已经发布的问题,但我不知道还有什么可以尝试,再次我只是从这些东西开始,我真的迷失了。我在同一台机器上运行,所有的xx.xx.xx.xx代表我的IP地址。任何建议将非常感谢。我试图尽可能具体,但如果缺少某些东西,我会发布它。预先感谢您的时间和帮助。

3 个答案:

答案 0 :(得分:2)

这里的问题是sftp的源位置和目标位置是相同的:

** sftp upload /tmp/20121113173743.tar.gz -> /tmp/20121113173743.tar.gz

为了解决问题,您可以在config / deploy.rb文件中指定参数copy_dir,如下所示:

set :copy_dir, "/tmp/sftp"

然后无需手动创建该文件夹。

答案 1 :(得分:0)

尝试将此行添加到deploy.rb配置文件中:

default_run_options[:pty] = true

答案 2 :(得分:0)

我们从

更改了Capfile
set :deploy_via, :copy

set :deploy_via, :remote_cache

这对我们有用。我们没有添加以下行

default_run_options[:pty] = true