mirror of https://github.com/apache/cassandra
Use correct system_auth table names in cassandra.yaml
Patch by Eduard Tudenhoefner; reviewed by Sam Tunnicliffe for CASSANDRA-12911
This commit is contained in:
parent
8f15eb1b71
commit
d5326866d3
|
|
@ -95,7 +95,7 @@ batchlog_replay_throttle_in_kb: 1024
|
|||
#
|
||||
# - AllowAllAuthenticator performs no checks - set it to disable authentication.
|
||||
# - PasswordAuthenticator relies on username/password pairs to authenticate
|
||||
# users. It keeps usernames and hashed passwords in system_auth.credentials table.
|
||||
# users. It keeps usernames and hashed passwords in system_auth.roles table.
|
||||
# Please increase system_auth keyspace replication factor if you use this authenticator.
|
||||
# If using PasswordAuthenticator, CassandraRoleManager must also be used (see below)
|
||||
authenticator: AllowAllAuthenticator
|
||||
|
|
@ -105,7 +105,7 @@ authenticator: AllowAllAuthenticator
|
|||
# CassandraAuthorizer}.
|
||||
#
|
||||
# - AllowAllAuthorizer allows any action to any user - set it to disable authorization.
|
||||
# - CassandraAuthorizer stores permissions in system_auth.permissions table. Please
|
||||
# - CassandraAuthorizer stores permissions in system_auth.role_permissions table. Please
|
||||
# increase system_auth keyspace replication factor if you use this authorizer.
|
||||
authorizer: AllowAllAuthorizer
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue