Create Users
Before You Start #
- Have your
DET_MASTER=<master IP>
environment variable handy. - Gather the list of usernames and passwords you want to set up.
CLI Required
You must have the Machine Learning Development Environment CLI installed to provision users.
To install the CLI, you can run the following command:
pip install determined
export DET_MASTER=<master IP>
How to Create a User #
-
First, set the set the remote IP address and port number in the DET_MASTER environment variable:
export DET_MASTER=<master IP>
For example:
export DET_MASTER=http://xyz-22-11-22-11.abc-2.compute.abcdef.com:8080/
-
Sign in as the admin user:
det user login admin
-
Then create a new user
det user create <username>
For example:
det user create msmith
How to Set a Password #
- Set the set the remote IP address and port number in the DET_MASTER environment variable:
export DET_MASTER=<master IP>
- Sign in as the admin user:
det user login admin
- Then run the following command:
det user change-password <username>
More Info #
Installing the CLI #
- For detailed instructions on installing the CLI, visit Machine Learning Development Environment documentation > Determined CLI.
Managing User Accounts #
- For details about managing user accounts in Machine Learning Development Environment, visit Machine Learning Development Environment documentation > User Accounts.
Managing Users in the UI #
- Administrators can create and manage users in the WebUI. To find out more, visit Machine Learning Development Environment documentation > Managing Remote Users.