Authentication Apache atlas 2.1配置连接cassandra后端[帮助]

Authentication Apache atlas 2.1配置连接cassandra后端[帮助],authentication,cassandra,janusgraph,apache-atlas,Authentication,Cassandra,Janusgraph,Apache Atlas,对于未来的poc,我需要部署一个apache atlas 2.1堆栈 但是我在他们的文档中找不到cassandra后端连接的参数。 如果任何人获得了链接或已经使用密码身份验证进行了实现 如果可以的话,这是我当前的配置文件 atlas.graph.storage.backend=cql atlas.graph.storage.hostname=cassandra atlas.graph.storage.cassandra.keyspace=JanusGraph atlas.graph.stora

对于未来的poc,我需要部署一个apache atlas 2.1堆栈 但是我在他们的文档中找不到cassandra后端连接的参数。 如果任何人获得了链接或已经使用密码身份验证进行了实现

如果可以的话,这是我当前的配置文件

atlas.graph.storage.backend=cql
atlas.graph.storage.hostname=cassandra
atlas.graph.storage.cassandra.keyspace=JanusGraph

atlas.graph.storage.clustername=cassandra
atlas.graph.storage.port=9042

atlas.EntityAuditRepository.impl=org.apache.atlas.repository.audit.CassandraBasedAuditRepository
atlas.EntityAuditRepository.keyspace=atlas_audit
atlas.EntityAuditRepository.replicationFactor=1

atlas.graph.index.search.backend=solr
atlas.graph.index.search.solr.mode=cloud
atlas.graph.index.search.solr.zookeeper-url=zookeeper:2181
atlas.graph.index.search.solr.zookeeper-connect-timeout=60000
atlas.graph.index.search.solr.zookeeper-session-timeout=60000
atlas.graph.index.search.solr.wait-searcher=true

atlas.graph.index.search.max-result-set-size=150

atlas.notification.embedded=false
atlas.data=${sys:atlas.home}/data/kafka

atlas.notification.create.topics=true
atlas.notification.replicas=1
atlas.notification.topics=ATLAS_HOOK,ATLAS_ENTITIES
atlas.notification.log.failed.messages=true
atlas.notification.consumer.retry.interval=500
atlas.notification.hook.retry.interval=1000

atlas.enableTLS=false

atlas.authentication.method.kerberos=false
atlas.authentication.method.file=true

atlas.authentication.method.ldap.type=none

atlas.authentication.method.file.filename=${sys:atlas.home}/conf/users-credentials.properties


atlas.rest.address=http://localhost:21000

atlas.audit.hbase.tablename=apache_atlas_entity_audit
atlas.audit.zookeeper.session.timeout.ms=1000
atlas.audit.hbase.zookeeper.quorum=atlas-zookeeper:2181

atlas.server.ha.enabled=false
atlas.authorizer.impl=simple
atlas.authorizer.simple.authz.policy.file=atlas-simple-authz-policy.json
atlas.rest-csrf.enabled=true
atlas.rest-csrf.browser-useragents-regex=^Mozilla.*,^Opera.*,^Chrome.*
atlas.rest-csrf.methods-to-ignore=GET,OPTIONS,HEAD,TRACE
atlas.rest-csrf.custom-header=X-XSRF-HEADER

atlas.metric.query.cache.ttlInSecs=900
#########小精灵搜索配置#########

#设置为false可禁用小精灵搜索。 atlas.search.gremlin.enable=false

具体问题是:

Caused by: com.datastax.driver.core.exceptions.AuthenticationException: Authentication error on host cassandra/172.20.180.174:9042: Host cassandra/xx.xx.xx.xx:9042 requires authentication, but no authenticator found in Cluster configuration

感谢您提供的帮助

您需要查看相关信息。根据它,这里有两个属性:
storage.username
storage.password
,可以用
atlas.graph.storage.username
作为前缀:
atlas.graph.
&
atlas.graph.storage.password

我在周末找到了它,谢谢你的帮助。如果将来有人想要链接