Links may not function; however, this content may be relevant to outdated versions of the product.
Creating Cassandra user roles with full database access
This content applies only to On-premises and Client-managed cloud environments
Give Pega Platform full access to your external database by creating Cassandra user roles with full access permissions.
- Create a Cassandra user role by running the
create role
CQL command:create role role_name with password = role_password and login = true
For example: create role pega_user with password = passwordxmp and login = true
For more information about thecreate role
CQL command, see the DataStax documentation. - Give full database access to the user role by running the
grant
CQL command:grant all permission on all keyspaces to rolename
For example: grant all permission on all keyspaces to pegauser
For more information about thegrant
CQL command, see the DataStax documentation.
Previous topic Defining Pega Platform access to an external Cassandra database Next topic Creating Cassandra user roles with limited database access