This document will cover the setup and preparation of the ownCloud server to support the use of Oracle as a backend database. For the purposes of testing, we are using Oracle Enterprise Linux as both the Web server that will host ownCloud, and as a host for the Oracle Database.
This document will cover the following steps:
The document assumes that you already have your Oracle instance running, and have provisioned the needed resources. It also assumes that you have installed ownCloud with all of the prerequisites.
Step one, if it has not already been completed by your DBA, provision a user space on the Oracle instance for ownCloud. This can be done by logging in as a DBA and running the script below:
CREATE USER owncloud IDENTIFIED BY password;
ALTER USER owncloud DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp QUOTA unlimited ON users;
GRANT create session, create table, create procedure, create sequence, create trigger, create view, create synonym, alter session TO owncloud;
Substitute an actual password for password. Items like TableSpace, Quota etc. will be determined by your DBA.
As our example system is Oracle Enterprise Linux, it is necessary to go to the Oracle site and download the Oracle Instant Client for your OS Distribution.
Note
Download the instant client and the instant client SDK and place them in a directory on the server, in this example they are RPM packages.
At this point, the Oracle Instant client is installed on the ownCloud Host (in the home directory).
The next step is to compile and install the OCI8 PHP extension for connectivity to the Oracle Database.
Create a folder for these bits on your server.
Download the latest version of the extension from http://pecl.php.net/package/oci8.
Unpack the OCI8 PHP extension and copy it over to the server.
Change (cd) to the folder where you have copied the downloaded and uncompressed OCI8 bits.
Run the following command (there will be a significant amount of output):
pecl build
Change directory:
cd oci8-<version number>
Type the following command:
./configure –with-oci8=instantcleint,/usr/lib/oracle/<version number>/client64/lib
Again, there will be significant output
Enter the following command to compile: make
At this time there should be a folder called modules in the oci8-<version_> folder. Within this folder exists the oci8.so file.
Copy this to the directory where the modules are stored in the PHP install. It depends on your distribution. This is the path for RHEL 6 and OEL 6:
cp oci8.so /usr/lib64/php/modules
Navigate to the php.d directory: cd /etc/php.d
Edit a file called oci8.ini: vi oci8.ini
Make the file look as follows:
; Oracle Instant Client Shared Object
extension=oci8.so
Save the document
The next step is to configure the ownCloud instance to point to the Oracle Database, again this document assumes that ownCloud has previously been installed.
This is the user space created in step 2.1. In our Example this would be owncloud.
Again this is defined in the script from section 2.1 above, or pre-configured and provided to you by your DBA.
Represents the database or the service that has been pre-configured on the TSN Listener on the Database Server. This should also be provided by the DBA. In this example, the default setup in the Oracle install was orcl (there is a TSN Listener entry for orcl on our database server).
This is not like setting up with MySQL or SQL Server, where a database based on the name you give is created. The oci8 code will call this specific service and it must be active on the TSN Listener on your Oracle Database server.
Provided by the DBA. In this example the users table space (as is seen in the user creation script above), was used.
Assuming all of the steps have been followed to completion, the first run wizard should complete successfully, and an operating instance of ownCloud should appear.
The configuration file should look something like this:
<?php
$CONFIG = array (
'instanceid' => 'abcdefgh',
'passwordsalt' => '01234567890123456789',
'datadirectory' => '/var/data',
'dbtype' => 'oci',
'version' => '8.2.x.y',
'dbname' => 'orcl',
'dbhost' => '192.168.1.57',
'dbtableprefix' => 'oc_',
'dbuser' => 'owncloud1',
'dbpassword' => '********',
'installed' => true,
);