Source: http://www.syahzul.com/2016/04/06/how-to-install-oci8-on-ubuntu-14-04-and-php-5-6/
Source: https://gist.github.com/Yukibashiri/cebaeaccbe531665a5704b1b34a3498e
Download the Oracle Instant Client and SDK from Oracle website. (Need to login in Oracle page)
http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
Files: instantclient-basic-linux.x64-12.2.0.1.0.zip and instantclient-sdk-linux.x64-12.2.0.1.0.zip.
Create a new folder to store Oracle Instant Client zip files on your server.
Upload the Instant Clients files inside this folder.
sudo mkdir /opt/oracleNow we need to extract the files.
sudo cd /opt/oracle
sudo unzip instantclient-basic-linux.x64-12.2.0.1.0.zip
sudo unzip instantclient-sdk-linux.x64-12.2.0.1.0.zipNext, we need to create a symlink to Instant Client files.
sudo ln -s /opt/oracle/instantclient_12_2/libclntsh.so.12.1 /opt/oracle/instantclient_12_2/libclntsh.so
sudo ln -s /opt/oracle/instantclient_12_2/libocci.so.12.1 /opt/oracle/instantclient_12_2/libocci.soAdd the folder to our ldconfig.
sudo echo /opt/oracle/instantclient_12_2 > /etc/ld.so.conf.d/oracle-instantclient.conf
sudo echo /opt/oracle/instantclient_12_2/lib > /etc/ld.so.conf.d/oracle.confUpdate the Dynamic Linker Run-Time Bindings
sudo ldconfigDone. Now we can proceed to the next part.
To install the OCI8 extension, we need to install some additional package on our server.
Run these command:
sudo apt-get install php7.3-dev php-pear build-essential libaio1Once installed, we need to get the OCI8 file. But, before that we need to update PECL channel.
sudo pecl channel-update pecl.php.net
Then.
sudo pecl install oci8When you are prompted for the Instant Client location, enter the following:
instantclient,/opt/oracle/instantclient_12_2We need to tell PHP to load the OCI8 extension.
sudo sudo echo "extension=oci8.so" >> /etc/php/7.3/mods-available/oci8.ini
sudo sudo phpenmod oci8We also need to add on apache those environment variables.
sudo echo "export LD_LIBRARY_PATH=/opt/oracle/instantclient_12_2" >> /etc/apache2/envvars
sudo echo "export ORACLE_HOME=/opt/oracle/instantclient_12_2" >> /etc/apache2/envvars
sudo echo "LD_LIBRARY_PATH=/opt/oracle/instantclient_12_2:$LD_LIBRARY_PATH" >> /etc/environmentRestart the Apache server
sudo /etc/init.d/apache2 restartNow you can connect to Oracle DBMS from your PHP applications.
My computer to develop works with Ubuntu Desktop 18.04 but the server is in Ubuntu Server 16.04, so what I do in my workstation I must replicate on the server and the steps above work perfectly in Ubuntu Server 16.04.