Chapter 32. Setting Up a Working Environment for Oracle


This chapter covers the creation of user accounts, directories and Oracle environments for your Oracle Database before you install.

32.1. Creating Oracle User Accounts

This section covers the command necessary to activate the required accounts to install an Oracle Database.
Create the group of users to be granted with SYSDBA system privilege:
su - root groupadd dba
Now create a group owner for Oracle files:
groupadd oinstall 
useradd -c "Oracle software owner" -g oinstall -G dba oracle 
passwd oracle
For more information on the "oinstall" group account, see When to use OINSTALL group during install of oracle.
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat Documentation

Legal Notice

Theme

© 2026 Red Hat
Back to top