2

私のメインデータベースはローカルのmysqlデータベースですが、アプリケーションコードでOracleデータベースに直接接続したい場合があります。

Oracleデータベースは別のRHELサーバーでホストされています。

ruby-OCI8 gemをインストールしようとして失敗しました(エラー:gemネイティブ拡張のビルドに失敗しました)。

このgemを使用するには、Oracleデータベースがローカルである必要があるのか​​、それともこれを実現するためのより良い方法があるのか​​、疑問に思っています。

gem install ruby-oci8

Building native extensions.  This could take a while...
ERROR:  Error installing ruby-oci8:
        ERROR: Failed to build gem native extension.

/usr/bin/ruby extconf.rb
checking for load library path...
  LD_LIBRARY_PATH...
    checking /opt/instantclient... yes
  /opt/instantclient/libclntsh.so.11.1 looks like an instant client.
checking for cc... *** 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=/usr/bin/ruby
        --with-instant-client
        --without-instant-client
./oraconf.rb:562:in `check_cc': RuntimeError (RuntimeError)
        from ./oraconf.rb:549:in `init'
        from ./oraconf.rb:1001:in `initialize'
        from ./oraconf.rb:343:in `new'
        from ./oraconf.rb:343:in `get'
        from extconf.rb:18
ng
---------------------------------------------------
Error Message:
  C compiler doesn't work correctly.
Backtrace:
  ./oraconf.rb:562:in `check_cc'
  ./oraconf.rb:549:in `init'
  ./oraconf.rb:1001:in `initialize'
  ./oraconf.rb:343:in `new'
  ./oraconf.rb:343:in `get'
  extconf.rb:18
---------------------------------------------------
See:
 * http://ruby-oci8.rubyforge.org/en/HowToInstall.html
 * http://ruby-oci8.rubyforge.org/en/ReportInstallProblem.html

mkmf.logファイルを確認しました。

 "gcc -o conftest -I. -I/usr/lib64/ruby/1.8/x86_64-linux -I.   -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fs    tack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fno-strict-aliasing  -fPIC conftest.c  -L. -L/usr/lib64 -L.      -rdynamic -Wl,-export-dynamic     -lruby-static  -lpthread -lrt -ldl -lcrypt -lm   -lc"
  /usr/bin/ld: skipping incompatible /usr/lib/libruby-static.a when searching for -lruby-static
  /usr/bin/ld: cannot find -lruby-static
  collect2: ld returned 1 exit status
  checked program was:
  /* begin */
  1: int main() { return 0; }
  8 /* end */
4

3 に答える 3

0

このブログ投稿がOCIgemインストールの実行に役立つかどうかを確認してくださいhttp://jessehu.wordpress.com/2008/07/03/ruby-oci8-gem-available-2/

于 2010-12-21T07:23:32.377 に答える
0

最初に、OracleInstantClientをインストールする必要があります。対応するLinux32ビットまたは64ビットのバイナリを選択します。安全のために、すべてのRubyおよびOracleプロジェクトで使用している古いバージョン10.2.0.4を使用してください。Basic、SDK、およびSQL*Plusパッケージをインストールします。

次に、Oracle Instant ClientのインストールディレクトリをLD_LIBRARY_PATH環境変数に含めて、OracleInstantClientのダイナミックライブラリがロードパスに含まれるようにします。

次に、ruby-oci8gemをインストールしてみてください。

その後、activerecord-oracle_enhanced-adapter gemをインストールして、ActiveRecordからOracleデータベースにアクセスできるようにします。

Mac OS Xにruby-oci8をインストールする方法の説明を投稿しました-これの大部分はLinuxにも当てはまります(MacのDYLD_LIBRARY_PATHはLinuxのLD_LIBRARY_PATHに対応します)。

さらに、Linuxでの自動Oracleクライアントインストール用のSprinkleレシピを作成しました。おそらくこれを開始するのに最適な方法ではありませんが、自動サーバーインストールスクリプトを作成する場合は、それを確認できます。

于 2010-12-21T12:37:25.537 に答える
0

以下のようにruby-oci8gemをインストールできます。

LD_LIBRARY_PATH = / local / home / soundar / instanceclient_11_2 gem install ruby​​-oci8

注:LD_LIBRARY_PATHは、Oracleインスタントクライアントのディレクトリパスによって設定される環境変数です。

于 2012-11-16T11:15:00.517 に答える