Skip to main content

timeplus user

timeplus user

When you run timeplus user without extra parameters, it will list all available sub-commmands, e.g.

Manage Timeplus Enterprise users

Usage:
timeplus user [flags]
timeplus user [command]

Available Commands:
create create a new Timeplus user
delete delete a new Timeplus user
list list Timeplus users
update update password or role for a Timeplus user

timeplus user list

You need to add --verbose to this command to get the user list.

This is fixed in Timeplus Enterprise 2.4.16

This will list all users in the cluster.

Sample output:

admin
default
new_user
proton

For each new deployment, by default the default and proton users will be provisioned and you can create more users via the web console or CLI.

timeplus user update --user [user] --password [password]

Update the password for the specified user.

timeplus user update --user [user] --role [role]

Change the role for the specified user. The valid value of role can be either admin or read_only.

timeplus user create --user [user] --password [password]

Create a new user with the specified password. By default, the admin role will be assigned. To create a user with read-only permission, add --role read_only to the end.

timeplus user delete --user [user]

Delete the specified user.