capistrano shared / bin文件夹为空

时间:2015-04-09 12:08:06

标签: ruby-on-rails ruby-on-rails-4 capistrano3

我使用capistrano进行部署,由于某种原因,我的共享/ bin文件夹是空的,并且它应该包含-rails,rake,bundle,setup,spring。现在显然我做错了,但是因为我是capistrano的新手,我不知道它是什么,因为它在我的git存储库中,据我所知它从存储库中复制整个东西。既然我不确定它是否相关,我会把我改变的一切都归咎于capistrano部署。 这是我的deploy.rb

lock '3.4.0'
# application settings
set :application, 'SomeApplication'
set :user, 'someuser'
#set :repo_url, 'git@bitbucket.org:someapp/someappserver.git'
set :rails_env, 'production'
set :use_sudo, false
set :keep_releases, 5


#git settings
set :scm,           :git
set :branch,        "master"
set :repo_url,    "git@bitbucket.org:someapplication/someapplicationserver.git"
set :deploy_via,    :remote_cache


set :rvm_ruby_version, '2.2.1'
set :default_env, { rvm_bin_path: '~/.rvm/bin' }
SSHKit.config.command_map[:rake] = "#{fetch(:default_env)[:rvm_bin_path]}/rvm ruby-#{fetch(:rvm_ruby_version)} do bundle exec rake"


# dirs we want symlinked to the shared folder
# during deployment
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}


set :pg_database, "someapp_production"
set :pg_user, "someapp_production"
set :pg_ask_for_password, true


namespace :deploy do

  task :config_nginx do
    pre = File.basename(previous_release)
    cur = File.basename(release_path)
    run "#{sudo} sed 's/#{pre}/#{cur}/g' /etc/nginx/sites-available/default"
  end

  task :restart_thin_server do
    run "cd #{previous_release}; source $HOME/.bash_profile && thin stop -C thin_config.yml"
    run "cd #{release_path}; source $HOME/.bash_profile && thin start -C thin_config.yml"
  end

  task :restart_nginx do
    run "#{sudo} service nginx restart"
  end


  desc 'Restart application'
  task :restart do
    on roles(:app), in: :sequence, wait: 5 do
      # Your restart mechanism here, for example:
      # execute :touch, release_path.join('tmp/restart.txt')
      #
      # The capistrano-unicorn-nginx gem handles all this
      # for this example
    end
  end

  after :publishing, :restart

  after :restart, :clear_cache do
    on roles(:web), in: :groups, limit: 3, wait: 10 do
      # Here we can do anything such as:
      # within release_path do
      #   execute :rake, 'cache:clear'
      # end
    end
  end

end

这是我的deploy / production.rb

# production deployment
set :stage, :production
# use the master branch of the repository
set :branch, "master"
# the user login on the remote server
# used to connect and deploy
set :deploy_user, "someuser"
# the 'full name' of the application
set :full_app_name, "#{fetch(:application)}_#{fetch(:stage)}"
# the server(s) to deploy to
server 'someserver.cloudapp.net', user: 'someuser', roles: %w{web app db}, primary: true
# the path to deploy to
set :deploy_to, "/home/#{fetch(:deploy_user)}/apps/#{fetch(:full_app_name)}"
# set to production for Rails
set :rails_env, :production

这是我的上限文件

require 'capistrano/setup'

# Include default deployment tasks
require 'capistrano/deploy'

# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
#
#   https://github.com/capistrano/rvm
#   https://github.com/capistrano/rbenv
#   https://github.com/capistrano/chruby
#   https://github.com/capistrano/bundler
#   https://github.com/capistrano/rails
#   https://github.com/capistrano/passenger
#
 require 'capistrano/rvm'
# require 'capistrano/rbenv'
# require 'capistrano/chruby'
 require 'capistrano/bundler'
 require 'capistrano/rails/assets'
 require 'capistrano/rails/migrations'
# require 'capistrano/passenger'

require 'capistrano/thin'
require 'capistrano/postgresql'

# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }

2 个答案:

答案 0 :(得分:5)

像@ emj365说的那样 只需在config / deploy.rb中删除bin形式的linked_dir

  

set:linked_dirs,%w { bin log tmp / pids tmp / cache tmp / sockets vendor / bundle public / system}

答案 1 :(得分:0)

@gilmishal请查看此链接.. capistrano-deploy-configuration

并密切注意我错误多次的目录路径

# Default deploy_to directory is /var/www/my_app_name
# set :deploy_to, '/var/www/my_app_name'  # This conf is by default 

希望它能解决你的问题