| If you want to use an existing user or group ID, you do not need to create new ones at this time. Instead, you can proceed to the next step. |
You must be a user with root authority to perform the following:
Next, create a username that will be the instance owner. This
username will be the name of the instance. Make this user's
primary group the SYSADM group you created. In our examples, the
instance username is db2inst1 and the SYSADM group is
dbadmin1.
| Dedicate the instance owner user ID to that instance's use only. This allows for easier error recovery if a system error occurs. |
groupadd dbadmin1 useradd -g dbadmin1 -d /home/instl -m db2inst1 passwd db2inst1
groupadd db2fadm1 useradd -g db2fadm1 -d /home/db2fenc1 -m db2fenc1 passwd db2fenc1
Fenced user defined functions (UDFs) and stored procedures will execute under this user and group. The group must be the primary group of the user. The user for fenced UDFs and stored procedures is specified as a parameter of the instance creation script. The group for fenced UDFs and stored procedures is implicitly set to the primary group of this specified user (db2fenc1).
For security reasons, we recommend that you do not use the instance name as the FencedID. However, if you are not planning to use fenced user defined functions or stored procedures, you can set the FencedID to the instance name instead of creating another user for the FencedID.
Notes: