2010-03-16

Oracle database silent installation on Debian Lenny (Part 2)

This is the continuation of my previous post, I'll install Oracle RDBMS 11gR2 in this part.

A lot of steps can be skipped at this time, because installation will be taken place on the same machine and Oracle RDBMS 10gR2 has already been successfully deployed.

Change the current directory on that one to where Oracle install kit has been extracted.

$ cd /path/to/rdbms112_install

Create a response file.

$ vi rdbms111.rsp
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0
oracle.install.option=INSTALL_DB_SWONLY
UNIX_GROUP_NAME=dba
INVENTORY_LOCATION=/usr/local/oracle/inventory
SELECTED_LANGUAGES=en
ORACLE_HOME=/usr/local/oracle/product/rdbms112
ORACLE_BASE=/usr/local/oracle
oracle.install.db.InstallEdition=EE
oracle.install.db.isCustomInstall=false
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=dba
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
DECLINE_SECURITY_UPDATES=true

Start Oracle Universal Installer. (Note that swith -ignoreSysPrereqs has been changed to -ignorePrereq as of this release)

$ ./runInstaller -ignorePrereq -responseFile /path/to/rdbms111.rsp -silent

Execute the plain old root.sh.

# /usr/local/oracle/product/rdbms112/root.sh

No comments: