Code Snippet

Just another Code Snippet site

[Unix] Install Oracle 11g CLI

Create groups :

groupadd oinstall
groupadd dba
groupadd oper

Create user :

useradd -g oinstall -G dba,oper oracle

Ensure that X11 is enabled (see link)

Set up env. variables :

ORACLE_BASE=/home/oracle/00.DATABASE
ORACLE_SID=ORADEV
export ORACLE_BASE ORACLE_SID

export NLS_LANG=.UTF8

Run installer :

./runInstaller

to add an instance :

dbca

,


2 thoughts on “[Unix] Install Oracle 11g CLI

Leave a Reply

Your email address will not be published. Required fields are marked *