私はcapistrano、capistrano/rbenv、capistrano/bundler、capistrano/Railsを使用しています。 capistranoがアセットをコンパイルするステップでこのエラーが発生します。
DEBUG [49a50df6] /usr/bin/env:
DEBUG [49a50df6] Ruby
DEBUG [49a50df6] : No such file or directory
DEBUG [49a50df6]
実動サーバーでは/usr/bin/env Ruby -v
が正しいです。私はこれに気づいています: why-does-something-work-in-my-ssh-session-but-not-in-capistrano しかし、私はそれを動作させることができません。
これは私のCapfile
です:
# Load DSL and Setup Up Stages
require 'capistrano/setup'
# Includes default deployment tasks
require 'capistrano/deploy'
# Includes 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/tree/master/assets
# https://github.com/capistrano/Rails/tree/master/migrations
#
# require 'capistrano/rvm'
require 'capistrano/rbenv'
# require 'capistrano/chruby'
require 'capistrano/bundler'
require 'capistrano/Rails/assets'
require 'capistrano/Rails/migrations'
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
これは私のdeploy.rb
です:
# rbenv
set :rbenv_type, :user
set :rbenv_Ruby, '2.0.0-p247'
# bundler
set :bundle_gemfile, -> { release_path.join('Gemfile') }
set :bundle_dir, -> { shared_path.join('bundle') }
set :bundle_flags, '--deployment --quiet'
set :bundle_without, %w{development test}.join(' ')
set :bundle_binstubs, -> { shared_path.join('bin') }
set :bundle_roles, :all
# Rails
set :Rails_env, 'production'
set :application, 'MY APP'
set :repo_url, 'MY_REPO.git'
# ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
# set :deploy_to, '/var/www/my_app'
# set :scm, :git
# set :format, :pretty
# set :log_level, :debug
# set :pty, true
set :linked_files, %w{.env config/database.yml}
# set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}
# set :default_env, { path: "/opt/Ruby/bin:$PATH" }
set :keep_releases, 5
namespace :deploy do
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')
end
end
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
after :finishing, 'deploy:cleanup'
end
そしてこれは私のstaging.rb
:
set :stage, :staging
# Simple Role Syntax
# ==================
# Supports bulk-adding hosts to roles, the primary
# server in each group is considered to be the first
# unless any hosts have the primary property set.
#role :app, %w{[email protected]}
#role :web, %w{[email protected]}
#role :db, %w{[email protected]}
# Extended Server Syntax
# ======================
# This can be used to drop a more detailed server
# definition into the server list. The second argument
# something that quacks like a has can be used to set
# extended properties on the server.
#server 'example.com', user: 'deploy', roles: %w{web app}, my_property: :my_value
server 'my_server', user: 'my_user', roles: %w{web app db}
# you can set custom ssh options
# it's possible to pass any option but you need to keep in mind that net/ssh understand limited list of options
# you can see them in [net/ssh documentation](http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start)
# set it globally
# set :ssh_options, {
# keys: %w(/home/rlisowski/.ssh/id_rsa),
# forward_agent: false,
# auth_methods: %w(password)
# }
# and/or per server
# server 'example.com',
# user: 'user_name',
# roles: %w{web app},
# ssh_options: {
# user: 'user_name', # overrides user setting above
# keys: %w(/home/user_name/.ssh/id_rsa),
# forward_agent: false,
# auth_methods: %w(publickey password)
# # password: 'please use keys'
# }
# setting per server overrides global ssh_options
# fetch(:default_env).merge!(Rails_env: :staging)
set :deploy_to, '/home/my_user'
そして、これは完全なトレースです:
INFO [c24b8f94] Running RBENV_ROOT=~/.rbenv RBENV_VERSION=2.0.0-p247 ~/.rbenv/bin/rbenv exec bundle exec rake assets:precompile on 162.243.16.201
DEBUG [c24b8f94] Command: cd /home/my_app/releases/20131101193513 && ( Rails_ENV=production RBENV_ROOT=~/.rbenv RBENV_VERSION=2.0.0-p247 ~/.rbenv/bin/rbenv exec bundle exec rake assets:precompile )
DEBUG [c24b8f94] /usr/bin/env:
DEBUG [c24b8f94] Ruby
DEBUG [c24b8f94] : No such file or directory
DEBUG [c24b8f94]
cap aborted!
rake stdout: Nothing written
rake stderr: Nothing written
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/command.rb:94:in `exit_status='
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:125:in `block (4 levels) in _execute'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/channel.rb:551:in `call'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/channel.rb:551:in `do_request'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:561:in `channel_request'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:465:in `dispatch_incoming_packets'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:221:in `preprocess'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:205:in `process'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `block in loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/channel.rb:269:in `wait'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:147:in `block (2 levels) in _execute'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/channel.rb:514:in `call'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/channel.rb:514:in `do_open_confirmation'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:545:in `channel_open_confirmation'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:465:in `dispatch_incoming_packets'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:221:in `preprocess'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:205:in `process'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `block in loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/net-ssh-2.7.0/lib/net/ssh/connection/session.rb:169:in `loop'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:149:in `block in _execute'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:106:in `tap'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:106:in `_execute'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:54:in `execute'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/capistrano-Rails-1.0.0/lib/capistrano/tasks/assets.rake:61:in `block (6 levels) in <top (required)>'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/abstract.rb:89:in `with'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/capistrano-Rails-1.0.0/lib/capistrano/tasks/assets.rake:60:in `block (5 levels) in <top (required)>'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/abstract.rb:81:in `within'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/capistrano-Rails-1.0.0/lib/capistrano/tasks/assets.rake:59:in `block (4 levels) in <top (required)>'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:42:in `instance_exec'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/backends/netssh.rb:42:in `run'
/Users/patricio/.rbenv/versions/2.0.0-p247/lib/Ruby/gems/2.0.0/gems/sshkit-1.1.0/lib/sshkit/runners/parallel.rb:12:in `block (2 levels) in execute'
Tasks: TOP => deploy:assets:precompile
ちなみに、$PATH
は問題なく動作するため、bundle install
とは関係ないと思います。
誰が何が起こっているか知っていますか?
ありがとうございました!
OK、修正しました。
私はこれを追加しました:
set :default_env, { path: "~/.rbenv/shims:~/.rbenv/bin:$PATH" }
わたしの deploy.rb
。
最善の解決策かどうかはわかりませんが、うまくいきました。
さて、私は同じ問題を抱えていて、それを解決するのにかなり時間がかかったので:
おそらく、sshを使用してシェルでログインすると、このコマンドがIS.
私は専門家ではありません(間違っている場合は修正してください):問題は、sshを使用してリモートサーバーにログインするときにいくつかの違いがあることです。 capistranoのドキュメントを引用するには:
それは実際にシェルカピストラーノのどの種類を使用しているかの問題であり、ログイン、非ログイン、インタラクティブ、または非インタラクティブに関する可能性のマトリックスです。
それらには派手なグラフィックがあります ここ (下部)には、ログインプロセスで実行されるファイルのパスが示されています。 -このトピックについて読み続けたい場合、与えられたソースも興味深い。
何が問題なのですか?
Sshを使用してログインすると、(ログイン時に)いくつかのファイル(たとえば、bashを使用している場合の.bash_profile)を実行しています。通常、$ PATH変数は、環境内の重要な機能へのいくつかのパスで拡張されます。ただし、異なるログイン「スタイル」には異なるファイルが含まれます。
ドキュメントが再び言うように:
デフォルトでは、Capistranoは常に非ログイン、非対話型のシェルを割り当てます。
私の場合、これはログインファイル.bash_profileが含まれていない場合につながりますが、rvmの設定が含まれています。 capistranoログインセッションが私のrvmパスを知らなかったという結果。
どうすれば修正できますか?
私にとっては、-/ncommentingのrequire 'capistrano/rvm'(RVMを使用しているので) Capfile(Railsプロジェクトのルートにあります。
誰かを助けたい。
編集:
そして、確実にGemfileにgem 'capistrano-rvm'
を含めてください!
実行すべきだと思う
apt-get install git-core
あなたのサーバーで
Rbenvを使用しても同じ問題が発生しました。私にとってそれを解決したのは、バンドラーの前ではなくrbenvライブラリを含めることでした。順序が重要であることが判明しました。 Capfileの内容は次のとおりです。
require 'capistrano/rbenv'
require 'capistrano/bundler'
正しく実行した場合は、rbenvプレフィックスを使用して、次の行に沿ってbundleコマンドが実行されます。
XX RBENV_ROOT=$HOME/.rbenv RBENV_VERSION=2.3.0 $HOME/.rbenv/bin/rbenv exec bundle install ...
Capfileでこれらすべてのgemが必要であることを確認してください。
私の問題は:
DEBUG [3132b2c2] /usr/bin/env: ‘bundle’: No such file or directory
DEBUG [3132b2c2]
私はこのように解決しました:
Debianでは、〜/ .bashrcに次のようなコードブロックがあります。
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
Capistranoを実行すると、実際には〜/ .bashrcが使用されますが、そのコードブロック以下のコマンドは実行されません。
そのため、そのコードブロックの上にload Ruby環境で必要なコード行を追加する問題を修正し、Capistranoがバンドルをロードできるようにしました。
source /usr/local/share/chruby/chruby.sh
source /usr/local/share/chruby/auto.sh
PS:サーバーでchrubyを使用しています。
エラーの解決策:
/ usr/bin/env git no such file or directory capistrano
デプロイを行うマシンであるリモートサーバーにgitをインストールします。
apt-get install git
私は同じエラーに直面していましたが、一生懸命解決しようとした後、コードを展開しているサーバーからランダムにいくつかのパッケージを削除したことを思い出しました。
そのため、誤ってgitも削除しました。実行中Sudo apt-get install git
で修正しました。
ターミナルでbundle install
とインタラクティブに入力すると、機能しました。今、カピストラーノでそれを使用すると、機能しません。
この方法で解決しました:
Ubuntuでは、~/.bashrc
に次のようなコードブロックがあります。
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
Capistranoを実行すると、実際には~/.bashrc
が使用されますただし、そうではありませんそのコードブロックの下のコマンドを実行します。
そのため、bundle install
上記のコードブロックで必要なコード行を移動する問題を修正し、Capistranoがロードできるようにしました。
which bundle
を実行すると、移動する行のヒントを取得できます。