Administration/Command Line

User Management Command

The gig user command is used to manage user accounts in Gigantics.

Usage

gig user [subcommand] [options]

Description

The user command provides functionality to create, modify, delete, and list user accounts in the Gigantics system.

Common Subcommands

  • add - Add a new user
  • remove - Remove an existing user
  • list - List all users
  • update - Update user information
  • password - Change user password

Examples

# List all users
gig user list
 
# Add a new user
gig user add --username=john --email=john@example.com
 
# Remove a user
gig user remove --username=john
 
# Change user password
gig user password --username=john

Options

  • --username [name] - Specify username
  • --email [email] - Specify user email
  • --role [role] - Specify user role
  • --active [true/false] - Set user active status

Best Practices

  1. Always verify user information before creating accounts
  2. Use strong passwords for user accounts
  3. Assign appropriate roles based on user responsibilities
  4. Regularly audit user accounts and remove inactive ones

See Also

On this page