Install Oracle UCM 10gR3 on Windows XP

Installing Oracle UCM 10gR3 on Windows is very similar to the Linux installation. Basically you'll have to go through the same steps:

  • Install and configure the Oracle XE Database
  • Install Oracle UCM
  • Install and configure the Apache Webserver

Install and configure the Oracle XE Database

Simply install the Oracle XE 10g Database, nothing special here.

After installing the database, you'll have to create a new tablespace for UCM. Connect to the database as SYSDBA using SQL*Plus and run the following commands:

CREATE TEMPORARY tablespace idc_temp 
  tempfile 'c:\oraclexe\oradata\XE\idc_temp.dbf' 
  SIZE 200M reuse autoextend ON NEXT 5120k maxsize unlimited;
 
CREATE tablespace idc_sys 
  datafile 'c:\oraclexe\oradata\XE\idc_sys.dbf' 
  SIZE 200M reuse autoextend ON NEXT 5120k maxsize unlimited;
 
CREATE USER idc 
  IDENTIFIED BY idc 
  TEMPORARY tablespace idc_temp 
  DEFAULT tablespace idc_sys 
  quota unlimited ON idc_sys;
 
GRANT CONNECT, resource TO idc;

Install Oracle UCM

Download the required file from the Oracle website and unzip it in your home directory. Now go to the following directory:

UCM -> ContentServer -> win32

And run the setup script:

setup.bat

The Oracle Content Server setup script will walk you through several steps. Most of them should be left as default, but some should have different values:

Oracle User: idc
Oracle Password: idc
Oracle Instance Name: XE
Attempt to create database tables: yes

Install and configure the Apache Webserver

The final step is to configure the Apache Webserver.

After installing the webserver, edit the file

LoadModule IdcApacheAuth "C:/stellent/shared/os/win32/lib/IdcApache22Auth.dll"
IdcUserDB idc "C:/stellent/data/users/userdb.txt"
 
Alias /idc "C:/stellent/weblayout"
<Location /idc>
        Order allow,deny
        Allow from all
        DirectoryIndex portal.htm
        IdcSecurity idc
</Location>

And that's all!

Add new comment