Posts

Oracle 10g Installation and manual DB Creation

Image
  ORACLE INSTALLATION AND DB CREATION PRE INSTALLATION STEPS FOR ORACLE After creating Redhat linux – Open Terminal in GUI – then give  [root@localhost ~]#    Service network restart  - then 1. Creating the Home directory for oracle mkdir -p /oraeng Now give  df –h  that will give the list of mount points 2. Creation of groups for the oracle user groupadd –g  1000 oinstall  groupadd -g  2000 dba useradd -u 1001 -g oinstall -G dba  -d  /oraeng  -m oracle #u   uid #d home directory for  the user “oracle” #g  assigns a base group to the user #G adds a additional group to the user 3. Changing the Permission of DB user chown -R oracle:oinstall /oraeng chown -R oracle:dba /disk1 /disk2 /oraeng # R - Recursive                                                       4. Set th...