0

実行時にこのエラーが発生しますcap:deploy

私はすでに走っapt-get updateapt-get upgrade

私はすでにバンドルインストールを実行し、GemfileとGemfile.lockをリポジトリに追加しました。

  * executing "cd /var/www/releases/20120606045148 && bundle install --gemfile /var/www/releases/20120606045148/Gemfile --path /var/www/shared/bundle --deployment --quiet --without development test"
    servers: ["11.111.11.11"]
    [11.111.11.11] executing command
 ** [out :: 11.111.11.11] Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
 ** [out :: 11.111.11.11] 
 ** [out :: 11.111.11.11] /usr/bin/ruby1.9.1 extconf.rb
 ** [out :: 11.111.11.11] Compiling V8
 ** [out :: 11.111.11.11] cp -r scons build
 ** [out :: 11.111.11.11] make: ruby: Command not found
 ** [out :: 11.111.11.11] make: ruby: Command not found
 ** [out :: 11.111.11.11] cd build/v8 && GCC_VERSION= ../scons/install/bin/scons arch=
 ** [out :: 11.111.11.11] scons: Reading SConscript files ...
 ** [out :: 11.111.11.11] Unknown arch value ''.  Possible values are (arm, ia32, x64, mips).
 ** [out :: 11.111.11.11] make: *** [build/v8/libv8.a] Error 1
 ** [out :: 11.111.11.11] *** extconf.rb failed ***
 ** [out :: 11.111.11.11] Could not create Makefile due to some reason, probably lack of
 ** [out :: 11.111.11.11] necessary libraries and/or headers.  Check the mkmf.log file for more
 ** [out :: 11.111.11.11] details.  You may need configuration options.
 ** [out :: 11.111.11.11] 
 ** [out :: 11.111.11.11] Provided configuration options:
 ** [out :: 11.111.11.11] --with-opt-dir
 ** [out :: 11.111.11.11] --without-opt-dir
 ** [out :: 11.111.11.11] --with-opt-include
 ** [out :: 11.111.11.11] --without-opt-include=${opt-dir}/include
 ** [out :: 11.111.11.11] --with-opt-lib
 ** [out :: 11.111.11.11] --without-opt-lib=${opt-dir}/lib
 ** [out :: 11.111.11.11] --with-make-prog
 ** [out :: 11.111.11.11] --without-make-prog
 ** [out :: 11.111.11.11] --srcdir=.
 ** [out :: 11.111.11.11] --curdir
 ** [out :: 11.111.11.11] --ruby=/usr/bin/ruby1.9.1
 ** [out :: 11.111.11.11] extconf.rb:10:in `<main>': Error compiling V8 (RuntimeError)
 ** [out :: 11.111.11.11] 
 ** [out :: 11.111.11.11] 
 ** [out :: 11.111.11.11] Gem files will remain installed in /var/www/shared/bundle/ruby/1.9.1/gems/therubyracer-0.8.2 for inspection.
 ** [out :: 11.111.11.11] Results logged to /var/www/shared/bundle/ruby/1.9.1/gems/therubyracer-0.8.2/ext/v8/gem_make.out
 ** [out :: 11.111.11.11] An error occured while installing therubyracer (0.8.2), and Bundler cannot continue.
 ** [out :: 11.111.11.11] Make sure that `gem install therubyracer -v '0.8.2'` succeeds before bundling.
    command finished in 73622ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /var/www/releases/20120606045148; true"
    servers: ["11.111.11.11"]
    [11.111.11.11] executing command
    command finished in 7100ms
failed: "env PATH=/var/lib/gems/1.9.1/bin:$PATH sh -c 'cd /var/www/releases/20120606045148 && bundle install --gemfile /var/www/releases/20120606045148/Gemfile --path /var/www/shared/bundle --deployment --quiet --without development test'" on 11.111.11.11
4

2 に答える 2

2

ここにrvmをインストールすることをお勧めします-Joshua Cheekが言ったように、問題はrubyバイナリにあるようで、rvmによって助けられるはずです。

Doapt-get install rvmを実行し、インストールしたら runrvm list knownを実行して、利用可能な Ruby バージョンのリストを表示します。rvm install (version)次に、必要なものをインストールしますrvm use (version)(ブラケットを除く)。

これを行うと、使用可能なrubyコマンドとクリーンな gemset を使用して、Ruby をクリーン インストールできます。

その後、できるようになるはずですapt-get install libv8- それでも問題が解決しない場合は、エラー メッセージを編集してください。そこから先に進みます。

于 2012-08-30T20:19:54.130 に答える
1

Ruby バイナリの名前は のようruby1.9.1ですが、バイナリを呼び出そうとしていrubyます。おそらく、「ruby」という名前のシンボリックリンクをパスのどこかに置き、それを指すようにすることができます/usr/bin/ruby1.9.1

于 2012-08-29T22:58:45.747 に答える