This page was last edited on October 31, 2023, at 13:32.
Comments or questions about this documentation? Contact us for support!
Web Services supports Cassandra authentication. Authentication validates incoming user connections to the Cassandra database. Implementing Cassandra authentication requires you to do some configuration in Cassandra and in Web Services.
The user login accounts and their passwords required for authentication are managed inside the cassandra.yaml file. Configure Cassandra authentication according to Datastax documentation.
To support Cassandra authentication, open the application.yaml file and provide the appropriate credentials. For example:
cassandraCluster:
thrift_port: 9160
jmx_port: 7199
...
userName: <super user name>
password: <super user password>
...