IBM DB2 Ubuntu 16

From DreamFactory
Jump to: navigation, search

IBM's PDO_IBM driver is required for connecting to DB2 databases and must be compiled from source. Please follow these instructions.

  1. Get the dsdriver package from IBM.
    • You can download the package from here. Grab the Linux 64 bit package.
    • This download requires you to register for a free account with IBM.
  2. Copy the downloaded tar.gz file to your home directory on the server.
  3. Uncompress the package and move it to /opt/
    • $ cd ~
    • $ tar -zxf ibm_data_server_driver_package_linuxx64_v11.1.tar.gz
    • $ sudo mv dsdriver /opt/
  4. Run the dsdriver installer
    • $ cd /opt/dsdriver
    • $ sudo chmod +x installDSDriver
    • $ sudo apt-get install ksh
    • $ sudo ksh installDSDriver
  5. Symlink the include directory
    • $ sudo ln -s /opt/dsdriver/include /include
  6. Get the DF Patched version of the PDO_IBM Source
    • $ cd ~
    • $ git clone https://github.com/dreamfactorysoftware/PDO_IBM-1.3.4-patched.git
  7. Compile and install the driver
    • $ cd PDO_IBM-1.3.4-patched
    • $ phpize
    • $ ./configure --with-pdo-ibm=/opt/dsdriver/lib
    • $ make
    • $ sudo make install
  8. Enable the driver in PHP
    • $ sudo nano /opt/bitnami/php/etc/php.ini
    • Locate the line that says ;extension=pdo_ibm.so
    • Uncomment it by removing the semicolon (;) extension=pdo_ibm.so