Apache Atlas 在初始安装后,启动时需要进行登录,可以使用账号admin/admin进行登录,在apache 的文档中并没有缺省账号的说明。
另外关于账号的管理,在 Authentication 中有说明,账号的信息存储在文件/conf/users-credentials.properties 中,其格式是:
username=group::sha256-password
注: 其中的Password 通过如下方式产生sha256sum 摘要信息
echo -n "Password" | sha256sum
e7cf3ef4f17c3999a94f2c6f612e8a888e5b1026878e4e19398b23bd38ec221a
当然这是在使用FILE作为认证方式时,该方式是通过在atlas-application.properties中如下设置的。
atlas.authentication.method.file=true
atlas.authentication.method.file.filename=${sys:atlas.home}/conf/users-credentials.properties
还好,这是缺省的设置,你可以只关心如何设置/conf/users-credentials.properties 的账号信息。
网友评论