7

I execute

$ bundle install

For my rails application... (3.2.8)

Right when it gets to ruby-oci8 ...

    Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /home/ubuntu/.rvm/rubies/ruby-1.9.3-p448/bin/ruby extconf.rb 
checking for load library path... 
  LD_LIBRARY_PATH... 
    checking /usr/lib/oracle/12.1/client/... no
  checking ld.so.conf... no
checking for cc... ok
checking for gcc... yes
checking for LP64... no
checking for sys/types.h... yes
checking for ruby header... ok
Get the version of Oracle from SQL*Plus... *** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/home/ubuntu/.rvm/rubies/ruby-1.9.3-p448/bin/ruby
    --with-instant-client
    --without-instant-client
/home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:760:in `get_version': RuntimeError (RuntimeError)
    from /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:709:in `initialize'
    from /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `new'
    from /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `get'
    from extconf.rb:18:in `<main>'
---------------------------------------------------
Error Message:
  cannot get Oracle version from sqlplus
Backtrace:
  /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:760:in `get_version'
  /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:709:in `initialize'
  /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `new'
  /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `get'
  extconf.rb:18:in `<main>'
---------------------------------------------------
See:
 * http://ruby-oci8.rubyforge.org/en/HowToInstall.html
 * http://ruby-oci8.rubyforge.org/en/ReportInstallProblem.html



Gem files will remain installed in /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5 for inspection.
Results logged to /home/ubuntu/.rvm/gems/ruby-1.9.3-p448/gems/ruby-oci8-2.1.5/ext/oci8/gem_make.out

An error occurred while installing ruby-oci8 (2.1.5), and Bundler cannot continue.
Make sure that `gem install ruby-oci8 -v '2.1.5'` succeeds before bundling.

I did everything from about every site and forum (especially from here). This one I feel like was the closest... http://jigyasamakkar.com/ruby-oci8-with-rails-3-1-on-ubuntu/

What is the best way to solve this issue?

4

2 に答える 2

6

私は最近、oracle + ruby​​ gem をインストールする必要がありました。Mac の手順は次のとおりです (ただし、ubuntu でも同様に機能します)。完全な手順は次のとおりです。

http://blog.codiez.co.za/2013/09/setup-oracle-instant-client-ruby-oci8-gem-mac/

重要なのは、動的ライブラリが格納されている場所を ruby​​-oci gem が認識している必要があるということです。ubuntu の場合、以下を設定する必要があります。LD_LIBRARY_PATH

次のファイルを取得します。

  • インスタントクライアント-ベーシック-linux.x64-11.2.0.3.0.zip
  • instantclient-sqlplus-linux.x64-11.2.0.3.0.zip
  • instantclient-sdk-linux.x64-11.2.0.3.0.zip

それらを抽出してどこかに配置し、次の環境変数を追加します。詳細な手順については、リンクを参照してください。

export ORACLE_BASE=/usr/local/oracle
export ORACLE_HOME=$ORACLE_BASE/product/instantclient_64/11.2.0.3.0
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$DYLD_LIBRARY_PATH
export TNS_ADMIN=$ORACLE_BASE/admin/network

環境変数の説明:

ORACLE_BASE:すべてのファイルが保存されている場所 ORACLE_HOME:実際のクライアントへのパス LD_LIBRARY_PATH: lib ディレクトリを指している必要があります。SDK zip ファイルがここに抽出されていることを確認してください TNS_ADMIN: TNS_ADMIN ファイルの場所 (ruby- oci gem)

于 2013-09-16T08:49:43.843 に答える
3

ruby-oci8 が機能するためには、インスタント クライアント、インスタント クライアント SDK、および sqlplus インスタント クライアントを同時にインストールすることが重要です。持っていると便利なツールです:)

私がオンラインで見つけることができる最高のリソース (魔法のように機能します) は、help.ubuntu.com にあるため、優れた信頼できるリソースです。

https://help.ubuntu.com/community/Oracle%20Instant%20Client

rpms を使用して、エイリアンを介して実行できるインスタント クライアントをインストールします。とにかく、それはすべてそこに説明されています。

OCI をコードで接続するには、TNS_ADMIN 環境変数を構成します。ubuntuコミュニティソリューションで言及されているのと同じ場所(ORACLE_HOMEが構成されているのと同じ場所)に配置しました。通常、oracle rdbms にあるものと同じフォルダー標準を使用します: network/admin.

私にとっては: sudo vi /etc/profile.d/oracle.sh export ORACLE_HOME=/usr/lib/oracle/11.1.0.1/client export TNS_ADMIN=/usr/lib/oracle/network/admin

次に、tnsnames.ora を TNS_ADMIN フォルダー内に配置します。

それが完了したら、gem をインストールするだけです。

gem はいくつかのエラー/警告をスローしますが、それらはそれほど重要ではなく、それでも機能します。セッションを再起動して、環境変数を取得します。

于 2013-08-02T20:54:03.603 に答える