Configuring Oracle
Database Creation
Section titled “Database Creation”Create the tablespace
Section titled “Create the tablespace”create tablespace OPENKMDATA datafile '/u01/app/oracle/oradata/XE/openkmdata.dbf' size 100M;Create a database and user
Section titled “Create a database and user”create user OPENKM identified by *secret* default tablespace OPENKMDATA quota unlimited on OPENKMDATA;grant all privileges to OPENKM;grant create any context, create cluster, create dimension, create indextype, create job, create materialized view, create operator, create procedure, create sequence, create session, create synonym, create table, create trigger, create type, create view to OPENKM;Configure your OpenKM.cfg
Section titled “Configure your OpenKM.cfg”Edit the file $TOMCAT_HOME/OpenKM.cfg
hibernate.dialect=org.hibernate.dialect.Oracle10gDialecthibernate.hbm2ddl=createConfigure Tomcat datasources
Section titled “Configure Tomcat datasources”Edit the file $TOMCAT_HOME/conf/server.xml and enable the resource named jdbc/OpenKMDS
<Resource name="jdbc/OpenKMDS" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" validationQuery="select 1 from dual" username="OPENKM" password="*secret*" driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:XE"/>Sample using service name instead of SID:
<Resource name="jdbc/OpenKMDS" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" validationQuery="select 1 from dual" username="OPENKM" password="*secret*" driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@localhost:1521/ServiceName"/>Configure the application login
Section titled “Configure the application login”Edity the file $TOMCAT_HOME/OpenKM.xml
<security:authentication-manager alias="authenticationManager"> <security:authentication-provider> <security:password-encoder hash="md5"/> <security:jdbc-user-service data-source-ref="dataSource" users-by-username-query="select usr_id, usr_password, 1 from OKM_USER where usr_id=? and usr_active='T'" authorities-by-username-query="select ur_user, ur_role from OKM_USER_ROLE where ur_user=?"/> </security:authentication-provider></security:authentication-manager>Check for the JDBC Driver
Section titled “Check for the JDBC Driver”Go to $TOMCAT_HOME/lib and check for the JDBC ojdbc6-11.2.0.3.jar Driver.
If it is not present, download the Oracle JDBC driver from Oracle JDBC Driver page and move it.
Run application
Section titled “Run application”As a process in the OpenKM startup, the application will automatically create an empty database structure.