1

我正在安装 Oracle Instant Client:Basic、SDK 和 SQL*Plus 软件包 v 10.2.0.5。

mkdir /opt
mkdir /opt/oracle
cd /opt/oracle
unzip path/to/instantclient-basic-OS-VERSION.zip
unzip path/to/instantclient-sdk-OS-VERSION.zip
unzip path/to/instantclient-sqlplus-OS-VERSION.zip

之后我设置vim ~/.oracle_client

    export ORACLE_HOME=/opt/oracle/
    export TNS_ADMIN=/admin/network/
    export LD_LIBRARY_PATH="/opt/oracle/instantclient_10_2/"

echo "source ~/.oracle_client" >> ~/.bash_profile source ~/.bash_profile

创建 tnsnames.ora 并测试连接 sqlplus opsvod/agatb137@FESTEST

SQL*Plus: Release 10.2.0.5.0 - Production on Thu Oct 31 14:55:17 2013

Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL>

但是当我尝试安装时gem install ruby-oci8 -v '2.1.5'出现错误:

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

    /usr/local/bin/ruby extconf.rb
checking for load library path...
  LD_LIBRARY_PATH...
    checking /opt/oracle/instantclient_10_2/...   skip: /opt/oracle/instantclient_10_2/libclntsh.so.10.1 is for i386 cpu.
  checking ld.so.conf...   skip: /opt/oracle/instantclient_10_2/libclntsh.so.10.1 is for i386 cpu.
no
checking for cc... ok
checking for gcc... yes
checking for LP64... yes
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
        --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/local/bin/ruby
        --with-instant-client
        --without-instant-client
/usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:760:in `get_version': RuntimeError (RuntimeError)
        from /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:709:in `initialize'
        from /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `new'
        from /usr/local/lib/ruby/gems/1.9.1/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:
  /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:760:in `get_version'
  /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:709:in `initialize'
  /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/oraconf.rb:320:in `new'
  /usr/local/lib/ruby/gems/1.9.1/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 /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5 for inspection.
Results logged to /usr/local/lib/ruby/gems/1.9.1/gems/ruby-oci8-2.1.5/ext/oci8/gem_make.out

如何解决这个问题?

4

3 回答 3

1

我们不会为我们的 Oracle 部署安装 gem,而是从源代码构建:

  1. 确保 ORACLE_HOME 指向 oracle 完整客户端或 oracle instaclient
  2. 确保在 $ORACLE_HOME/lib libclntsh.so 中作为指向 libclntsh.so.11.1 的符号链接存在
  3. 切换到 ruby​​-oci8-2.1.x 目录并运行
    1. 红宝石 setup.rb 配置
    2. ruby setup.rb 设置
    3. 红宝石 setup.rb 安装
  4. 仅在安装 ruby​​-oci8 适配器时安装 activerecord-oracle_enhanced-adapter。
于 2013-10-31T11:37:49.903 回答
0

跳过:/opt/oracle/instantclient_10_2/libclntsh.so.10.1 适用于 i386 cpu。

即时客户端是 32 位的。

检查 LP64... 是的

红宝石是 64 位的。

即时客户端的位数必须与 ruby​​ 相同。您需要 64 位即时客户端才能与 64 位 ruby​​ 一起使用。

于 2013-11-27T13:11:38.363 回答
0

If you are by any chance trying to install this gem on Fedora 27 and are faced with a very similar error message, try to do:

dnf install rpm-build libnsl*

This fixed my errors (found it here).

EDIT: As of Fedora 28, libnsl* is no longer included as default dependency. This will make the ruby-oci8 gem fail for less than obvious reasons. The install directive above has been updated with this finding.

于 2017-12-11T00:25:03.043 回答