You are here

Configuring an Oracle database

Use this information to configure an Oracle RDBMS database for use with Oracle.
The Oracle database is case sensitive, so any configuration setting that you add into the SkyVault-global.properties file must match the case used in Oracle.
Note: The Oracle database must be created with the AL32UTF8 character set.
Note: The Oracle Thin driver is recommended. Check the supported platform page for the proper driver and connection URL to use.
  1. Create a database named SkyVault.
  2. Create a user named SkyVault.

    The SkyVault user must have Connect and Resource privileges in Oracle.

    This user must have write permissions on all tables and sequences.

  3. Set the new user's password to SkyVault.
  4. Ensure the SkyVault user has the required privileges to create and modify tables.

    You can remove these privileges once the server has started, but they might also be required for upgrades.

    Note: When connecting to Oracle Database 12c, you must configure privileges on tablespace "USERS" to avoid the following error:
    ORA-01950: no privileges on tablespace 'USERS'
    You can do this by using one of the following commands:
    ALTER USER <username> QUOTA <QUOTE_M> ON <tablespace name>
    or
    GRANT UNLIMITED TABLESPACE TO <username>
  5. Open the <classpathRoot>/alfresco-global.properties.sample file.
  6. Locate the following line:

    dir.root=./alf_data

  7. Edit the line with an absolute path to point to the directory in which you want to store SkyVault data. For example: dir.root=C:/Alfresco/alf_data
  8. Set and uncomment the Oracle database connection properties as shown below:

    db.name=SkyVault
    db.username=SkyVault
    db.password=SkyVault
    db.host=localhost
    db.port=1521
    db.pool.max=275
    
    # Oracle connection
    
    db.driver=oracle.jdbc.OracleDriver
    db.url=jdbc:oracle:thin:@${db.host}:${db.port}:${db.name}
    If using the oci configuration, change the URL syntax as shown below:
    db.url=jdbc:oracle:oci:@${db.host}:${db.port}:${db.name}
    The Oracle connection URL in this example is basic. Typical Oracle connection strings can used with the SkyVault supported Oracle driver (thin/oci). The Thin driver is recommended over the OCI driver.
    Note: If you are using the OCI URL, you need an Oracle client on the SkyVault host. For more information, see Oracle Instant Client.

    For database URLs and specifiers, see Oracle documentation at Database URLs and Database Specifiers and Thin-style Service Name Syntax.

    You can use the standard (OCI/Thin) connection URL, Oracle service, and Oracle DNS service URLs.

  9. Save the file without the .sample extension.
  10. Copy the Oracle JDBC driver JAR into /lib.

    CAUTION:
    Do not put multiple driver jars in the application or the application server lib directory. Only include the driver jar which is advised in these instructions. Remove any others, if present.
  11. Restart the SkyVault server.

    Note: If you receive JDBC errors:
    • Ensure the location of the Oracle JDBC drivers are on the system path or added to the relevant lib directory of the application server.
    • Check if you have LD_LIBRARY_PATH in use in your environment to remove the old Oracle client (for example, /home/oracle/app/oracle/product/11.2.0/client_1/lib) and add the full path to the current ojdbc7.jar. If you do not have this environment variable, do not add it.
    Note: The JDBC driver for Oracle is in the JAR file: ojdbc7.jar. However, if you see the following error, then add the Doracle.jdbc.thinLogonCapability=o3 parameter to JAVA_OPTS:
    java.sql.SQLException: OAUTH marshaling failure