Cómo instalar Perl DBD :: Oracle con Oracle Instant Client en macOS Catalina

Dec 17 2020

Estoy ejecutando macOS Catalina 10.15.7 y necesito instalar Oracle Instant Client para ejecutar un script de Perl que se conecta a una base de datos.

1. Instalación de Oracle Instant Client

Descargué los paquetes que necesitaba:

  • Paquete ligero básico (DMG)
  • Paquete SDK (DMG)
  • Paquete ODBC (DMG)

Desde Instant Client 19.8 y siguió las instrucciones de instalación sin ningún problema (solo copiar y pegar)

Los archivos se extraen en /Users/username/Downloads/instantclient_19_8

2. Entorno ORACLE_HOME

A continuación, configuré ORACLE_HOME en /Users/username/Downloads/instantclient_19_8

export ORACLE_HOME=/Users/username/Downloads/instantclient_19_8

3. Instalación DBD::Oracle

Cuando intenté instalar DBD::Oracle, obtuve el siguiente error:

$ cpanm DBD::Oracle
--> Working on DBD::Oracle
Fetching http://www.cpan.org/authors/id/M/MJ/MJEVANS/DBD-Oracle-1.80.tar.gz ... OK
Configuring DBD-Oracle-1.80 ... N/A
! Configure failed for DBD-Oracle-1.80. See /Users/username/.cpanm/work/1608142485.48272/build.log for details.

El contenido del archivo de registro:

$ cat /Users/username/.cpanm/work/1608142485.48272/build.log
cpanm (App::cpanminus) 1.7044 on perl 5.032000 built for darwin-thread-multi-2level
Work directory is /Users/username/.cpanm/work/1608142485.48272
You have make /usr/bin/make
You have LWP 6.47
You have /usr/bin/tar: bsdtar 3.3.2 - libarchive 3.3.2 zlib/1.2.11 liblzma/5.0.5 bz2lib/1.0.6
You have /usr/bin/unzip
Searching DBD::Oracle () on cpanmetadb ...
--> Working on DBD::Oracle
Fetching http://www.cpan.org/authors/id/M/MJ/MJEVANS/DBD-Oracle-1.80.tar.gz
-> OK
Unpacking DBD-Oracle-1.80.tar.gz
Entering DBD-Oracle-1.80
Checking configure dependencies from META.json
Checking if you have Config 0 ... Yes (5.032000)
Checking if you have Encode 0 ... Yes (3.06)
Checking if you have Math::BigInt 0 ... Yes (1.999818)
Checking if you have Devel::Peek 0 ... Yes (1.28)
Checking if you have Test::More 0 ... Yes (1.302177)
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.44)
Checking if you have Data::Dumper 0 ... Yes (2.174)
Checking if you have DBI 1.623 ... Yes (1.643)
Checking if you have Test::NoWarnings 0 ... Yes (1.04)
Configuring DBD-Oracle-1.80
Running Makefile.PL
Using DBI 1.643 (for perl 5.032000 on darwin-thread-multi-2level) installed in /usr/local/Cellar/perl/5.32.0/lib/perl5/site_perl/5.32.0/darwin-thread-multi-2level/auto/DBI/
Configuring DBD::Oracle for perl 5.032000 on darwin (darwin-thread-multi-2level)

If you encounter any problem, a collection of troubleshooting
guides are available under lib/DBD/Oracle/Troubleshooting.
'DBD::Oracle::Troubleshooting' is the general troubleshooting
guide, while platform-specific troubleshooting hints
live in their labelled sub-document (e.g., Win32
hints are gathered in 'lib/DBD/Oracle/Troubleshooting/Win32.pod').

Trying to find an ORACLE_HOME
Your DYLD_LIBRARY_PATH env var is set to ''

      The ORACLE_HOME environment variable is not set and I couldn't guess it.
      It must be set to hold the path to an Oracle installation directory
      on this machine (or a machine with a compatible architecture).
      See the appropriate troubleshooting guide for your OS for more information.
      ABORTED!

-> N/A
-> FAIL Configure failed for DBD-Oracle-1.80. See /Users/username/.cpanm/work/1608142485.48272/build.log for details.

He leído aquí que ORACLE_HOMEdebería establecerse en el valor del directorio que contiene el /bindirectorio, pero no puedo encontrar ninguno /bin.

Respuestas

2 ChristopherJones Dec 17 2020 at 05:12

macOS siempre está cambiando, pero en Mojave instalé Instant Client desde los DMG y luego hice:

brew install perl
ln -s $HOME/Downloads/instantclient_19_8 $HOME/instantclient
export DYLD_LIBRARY_PATH=$HOME/instantclient
cpan -i -T DBI
cpan -i -T DBD::Oracle

En general, nunca configure ORACLE_HOME para Instant Client. (Puede hacer que se lean los archivos de configuración incorrectos). ORACLE_HOME se utiliza para una base de datos 'completa' o una instalación completa del cliente, no para Instant Client. Sin embargo, algunos instaladores aún hacen referencia a la variable para encontrar archivos de compilación, por lo que la necesitará, al menos en el momento de la compilación. DBD :: Oracle buscará internamente Instant Client y usará $ HOME / instantclient si $ ORACLE_HOME no está configurado.

macOS ha eliminado gradualmente la utilidad de DYLD_LIBRARY_PATH, ya que no se propaga a subcapas. Esto significa que no se puede utilizar de forma fiable. En Mojave descubrí que podía copiar alternativamente las bibliotecas de Instant Client en $ HOME / lib / y no necesitaba configurar DYLD_LIBRARY_PATH.

Nota al margen: si está utilizando DBD :: Oracle, no necesita el paquete ODBC de Instant Client.