I wanted to execute the following command:
alter KEYSPACE system_auth
WITH replication =
{ 'class' : 'SimpleStrategy',
'replication_factor' : 2 };
Is it normal that system_auth does not appear as a keyspace?
Basically the following error occurs:
Bad Request: Unknown keyspace system_auth
Also, how do I even browse existing keyspaces? Is it possible to view them even in cqlsh?
source
share