Creating a User Group and a User
In a server environment, independent users are assigned to each process to implement permission isolation for security purposes. User groups and users are created for the OS, not for the database.
The user created in this procedure will be used in 4. In the following operations, the user name gpadmin and the user group name gpadmin are used as examples. Replace them with the actual ones.
- Create a user group gpadmin and user gpadmin.
1 2
groupadd gpadmin useradd -g gpadmin gpadmin
- Set the password of the gpadmin user. Enter the same password twice as prompted.
passwd gpadmin
Parent topic: Configuring the Installation Environment