美文网首页
Apache Atlas 的初始密码及账户管理

Apache Atlas 的初始密码及账户管理

作者: 虽不能至_然心向往之 | 来源:发表于2019-04-29 17:29 被阅读0次

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 的账号信息。

相关文章

  • Apache Atlas 的初始密码及账户管理

    Apache Atlas 在初始安装后,启动时需要进行登录,可以使用账号admin/admin进行登录,在apac...

  • Atlas Home

    Apache Atlas Atlas为一些组织提供了开放的元数据管理(management)与治理(governa...

  • Apache Atlas 安装部署

    官网参考 Apache Atlas[http://atlas.apache.org/#/] 环境 Windows ...

  • Hadoop的元数据治理--Apache Atlas

    Hadoop的元数据治理--Apache Atlas Apache Atlas是Hadoop社区为解决Hadoop...

  • 在容器中运行Apache Atlas

    Apache Atlas in Docker 在按照apache atlas的文档启动应用时,总是失败,发现其对运...

  • CentOS7虚拟机部署元数据管理Atlas

    1. Atlas 概述 Apache Atlas 为组织提供开放式元数据管理和治理功能,用以构建其数据资产目录,对...

  • atlas读写分离

    一,读写分离优势及原理 二、Atlas安装 1,环境及安装 2,授权Atlas管理账号 3,修改test配置文件 ...

  • Apache Atlas使用测评

    Apache Atals简介 元数据的管理是一个受到越来越多关注的领域,Apache Atlas是元数据领域中最早...

  • MySQL-读写分离架构-Atlas

    Atlas介绍 安装配置 Atlas功能测试 生产用户要求 Atlas基本管理 连接管理接口 打印帮助: 查询后端...

  • Apache Atlas安装部署

    前言 由于各方面的限制和原因,Apache Atlas 编译与安装十分麻烦,总共耗时大约一个月才完成,第一部分是第...

网友评论

      本文标题:Apache Atlas 的初始密码及账户管理

      本文链接:https://www.haomeiwen.com/subject/yunynqtx.html