docs/content/stable/yugabyte-cloud/cloud-secure-clusters/add-users.md
When you create a cluster in YugabyteDB Aeon, you set up the database admin credentials, which you use to access the YugabyteDB database installed on your cluster. Use this account to:
YugabyteDB uses role-based access control (RBAC) to manage database authorization. A database user's access is determined by the roles they are assigned. You should grant database users only the privileges that they require.
To manage database users, first connect to your cluster using Cloud Shell or a client shell.
To create and manage database roles and users (users are roles with login privileges), use the following statements:
| I want to | YSQL Statement | YCQL Statement |
|---|---|---|
| Create a user or role. | CREATE ROLE | CREATE ROLE |
| Delete a user or role. | DROP ROLE | DROP ROLE |
| Assign privileges to a user or role. | GRANT | GRANT ROLE |
| Remove privileges from a user or role. | REVOKE | REVOKE ROLE |
| Change your own or another user's password. | ALTER ROLE | ALTER ROLE |
Add database users as follows:
{{< note title="Database users and case sensitivity" >}}
Like SQL and CQL, both YSQL and YCQL are case-insensitive by default. When specifying an identifier, such as the name of a table or role, YSQL and YCQL automatically convert the identifier to lowercase. For example, CREATE ROLE Alice creates the role "alice". To use a case-sensitive name, enclose the name in quotes. For example, to create the role "Alice", use CREATE ROLE "Alice".
{{< /note >}}
To add a database user in YSQL, use the CREATE ROLE statement as follows:
yugabyte=# CREATE ROLE <username> WITH LOGIN PASSWORD '<password>';
To grant a role to a user, use the GRANT statement as follows:
yugabyte=# GRANT <rolename> TO <username>;
{{< note title="Superuser in YugabyteDB Aeon" >}}
You can't create YSQL superusers in YugabyteDB Aeon. To create another database administrator, grant the yb_superuser role, and alter the role to apply role attributes. Refer to Database authorization in YugabyteDB Aeon clusters.
{{< /note >}}
To add a database user in YCQL, use the CREATE ROLE statement as follows:
admin@ycqlsh> CREATE ROLE <username> WITH PASSWORD = '<password>' AND LOGIN = true;
To grant a role to a user, use the GRANT ROLE statement as follows:
admin@ycqlsh> GRANT ROLE <rolename> to <username>;
To change your own or another user's password, use the ALTER ROLE statement.
In YSQL, enter the following:
yugabyte=# ALTER ROLE <username> PASSWORD 'new-password';
In YCQL, enter the following:
cassandra@ycqlsh> ALTER ROLE <username> WITH PASSWORD = 'new-password';