Monday, July 14, 2008

create groups and user account

Create the Oracle Groups and User Account

# /usr/sbin/groupadd -g 501 oinstall
# /usr/sbin/groupadd -g 502 dba
# /usr/sbin/useradd -m -u 501 -g oinstall -G dba oracle
# id oracle
uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)

or

# mkdir -p /u01/app
# groupadd -g 115 dba
# useradd -u 175 -g 115 -d /u01/app/oracle -s /bin/bash -c "Oracle" -p oracle oracle
# chown -R oracle:dba /u01
# passwd oracle


Set the password on the oracle account:

# passwd oracle
Changing password for user oracle.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
Create Mount Points Now create mount points to store the Oracle 10g software. This guide will adhere to the Optimal Flexible Architecture (OFA) for the naming conventions used in creating the directory structure.
Issue the following commands as root:


# mkdir -p /u01/app/oracle
# chown -R oracle:oinstall /u01/app/oracle
# chmod -R 775 /u01/app/oracle