======= The system admin team at xFusionCorp Industries has streamlined access management by implementing group-based access control. Here's what you need to do:
a. Create a group named nautilus_admin_users across all App servers within the Stratos Datacenter.
b. Add the user rajesh into the nautilus_admin_users group on all App servers. If the user doesn't exist, create it as well.
-
Log into each App server in the Stratos Datacenter. This can be done via SSH or any other remote access method used.
-
Create the group
nautilus_admin_userson each server:sudo groupadd nautilus_admin_users
Verify that the group was created:
cat /etc/group | grep nautilus_admin_users
-
Check if user
rajeshexists on each server:id rajesh
-
If the user does not exist, you need to create it:
sudo useradd rajesh
-
If the user exists, you can skip to adding the user to the group.
-
-
Add
rajeshto thenautilus_admin_usersgroup:sudo usermod -aG nautilus_admin_users rajesh
Verify that the user was added to the group:
id rajesh
OutPut:
uid=1002(rajesh) gid=1002(nautilus_admin_users) groups=1002(nautilus_admin_users)
f7c7fd80adeddf656cceb259d6504524031032d5