Advertisement
chatchai_j

Oracle Perl Setup

Oct 3rd, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. 1. Need oracle instantclient from oracle, download from
  2.  
  3. https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html
  4.  
  5. Note: the version 19.x instantclient can be download without agree to license and oracle account
  6. but the one that can be used with libdbd-oracle-perl on debian/devuan must be version 12.1
  7.  
  8. https://download.oracle.com/otn/linux/instantclient/121020/oracle-instantclient12.1-basiclite-12.1.0.2.0-1.x86_64.rpm
  9.  
  10. which 1st required license agreement and oracle account (free) before download.
  11.  
  12. 2. Since it is in RPM format, on debian/devuan will need alien, so if not install yet
  13. could be done by
  14.  
  15. $ sudo apt-get install alien
  16.  
  17. after than instantclient12.1 could be installed by
  18.  
  19. $ sudo alien -i oracle-instantclient12.1-basiclite-12.1.0.2.0-1.x86_64.rpm
  20.  
  21. 3. Download libdbd-oracle-perl from
  22.  
  23. https://packages.debian.org/stretch/amd64/libdbd-oracle-perl/download
  24.  
  25. or
  26.  
  27. http://http.us.debian.org/debian/pool/contrib/libd/libdbd-oracle-perl/libdbd-oracle-perl_1.74-3_amd64.deb
  28.  
  29. this package can't be installed by using apt/apt-get install since
  30. this package depend on oracle-instantclient package, but oracle-instantclient not available
  31. in deb format due to it's non-free, and require license agreement on oracle web site
  32.  
  33. to install this package, it is necessary to download deb package and install it manually.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement