If you are not connected to LDAP or Active Directory and want to add a local user account for file shares follow these instructions
Step-by-step guide
- Connect to the Brickstor via SSH or into the terminal directly
- #useradd <username>
- To set the user’s password:
- #passwd <username>
- To add permissions for this user for SMB, AFP, or NFS shares, modify permissions for “unixuser: <username>” in MyRack Manager.
To add users with a specific uid and gid follow this format:
- #useradd -u <uid> -g <gid> <username>
Note
To remove an account just use:
- #userdel <username>