> ## Documentation Index
> Fetch the complete documentation index at: https://docs.regatta.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Credentials

All Regatta cluster deployments come with a default user. The default user’s credentials are:

* Username: admin
* Password: RegattaDefault1234!

These can be used out-of-the-box.

To change the default password, run the following command in the WebCLI:

```SQL theme={null}
ALTER USER admin WITH PASSWORD '<new_password>'
```

To create a new user to use, run the following command in the WebCLI:
Please note that there are requirements for the username and password format.

```SQL theme={null}
CREATE USER <user_name> WITH PASSWORD '<password>' <new_password>'
```

### Username

* Usernames should be between 1 and up to 64 characters long.
* Begin with a letter (a-z or A-Z) or an underscore (\_).
* Subsequent characters can be letters, underscores, digits (0-9), or dollar signs (\$).
* Unsupported characters are permitted only if they are surrounded by double quotes.
* Reserved words can be used as a username.
* Names are case-sensitive. However, unquoted names are always converted to
  lowercase, and quoted names preserve the case and also allow spaces within the
  names.

### Password

* Password length should be between 8 and 100 characters
* A password must contain at least 3 of the following character classes:
  * Upper case characters
  * Lower case characters
  * Numbers
  * Symbols. Any of the following symbols can be used. The list is enclosed in
    double quotes. “ ' \~ ! @ # \$ % ^ & \* ( ) \_ - + = { } \[ ] \ / \< > , . ; ? ‘ : | (space)”
