Я пытаюсь создать роли в Cassandra, когда вошел в систему как пользователь cassandra по умолчанию, и эта ошибка выскакивает
cassandra@cqlsh> create role admin with password = 'admin'
... and superuser = true
... and login = true;
Unauthorized: Error from server: code=2100 [Unauthorized] message="Only superusers can
create a role with superuser status"
Следует также отметить, что я изменил authenticator: AllowAllAuthenticator
на authenticator: PasswordAuthenticator
и authorizer: AllowAllAuthorizer
до authorizer: CassandraAuthorizer
в файле cassandra.yaml и перезапустите службу Cassandra после внесения этих изменений, но ошибка все еще появляется.