If you use a non-default authenticator and/or authorizer, such as PasswordAuthenticator, alter the replication factor for the system_auth keyspace. In a multi-node cluster, using the default replication factor of 1 for the system_auth keyspace precludes logging into any node when the node that stores the user data is down. For all system_auth-related queries, Cassandra uses the QUORUM consistency level.
To change the replication factor of the system_auth keyspace:
Change the replication factor using CQL:
Example for SimpleStrategy
ALTER KEYSPACE system_auth WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor' : 3 };
Example for NetworkTopologyStrategy
ALTER KEYSPACE system_auth WITH REPLICATION = {'class' : 'NetworkTopologyStrategy', 'dc1' : 3, 'dc2' : 3};
If you change the system_auth keyspace on an existing cluster:
Cassandra uses the system_auth keyspace for storing security authentication and authorization information: