Skip to content

Instantly share code, notes, and snippets.

@orlissenberg
Created January 15, 2016 17:36
Show Gist options
  • Save orlissenberg/b9be4e9742b4593b9d81 to your computer and use it in GitHub Desktop.
Save orlissenberg/b9be4e9742b4593b9d81 to your computer and use it in GitHub Desktop.
Install the Oracle instant client via pecl on jessie for PHP 7

#Oracle Database Instant Client Installation

Download

cd /opt
sudo unzip instantclient-sdk-linux.x64-12.1.0.2.0.zip
sudo unzip instantclient-basic-linux.x64-12.1.0.2.0.zip

cd /opt/instantclient_12_1
sudo ln -s libclntsh.so.12.1 libclntsh.so
sudo ln -s libocci.so.12.1 libocci.so

Install php7.0-dev Install pecl

sudo pecl install oci8-2.1.0
use as ORACLE_HOME -> instantclient,/opt/instantclient_12_1

Add extension to php.ini Check

php -i | grep oci
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment