Create an Oracle User Account

Create an Oracle group and user account on your Linux system(s).

  1. Create a new group called oracle.
    groupadd oracle
  2. Create a new user account called oracle that belongs to the oracle group.
    useradd -m -g oracle -d /home/oracle -s /bin/bash oracle
  3. Set the password for the oracle user account.
    passwd oracle