postgres + 如何删除配置单元元存储的密码并设置新密码
postgres + how to delete the password for hive metastore and set new password
我们正在使用 ambari 开发 HDP 2.6.5 集群
我们想更改 hive 的密码,因为我们认为我们之前输入了错误的密码
我们还从配置单元日志中得到:
Caused by: org.postgresql.util.PSQLException: FATAL: password authentication failed for user "hive"
所以我们试试
# su - postgres
Last login: Mon Aug 31 15:27:30 UTC 2020 on pts/2
-bash-4.2$ psql
psql (9.2.24)
Type "help" for help.
postgres=# CREATE DATABASE hive;
ERROR: database "hive" already exists
postgres=# CREATE USER hive WITH PASSWORD 'something';
ERROR: role "hive" already exists
但正如我们在上面看到的那样,我们得到 - '错误:角色“蜂巢”已经存在
如何删除当前密码和设置新密码?
参考 - https://community.pivotal.io/s/article/How-to-find-the-Hive-metadata-store-password?language=en_US
您不需要删除旧密码,也没有办法删除它。只需使用 alter role 命令即可。
Alter role test with password ‘something’;
我们正在使用 ambari 开发 HDP 2.6.5 集群
我们想更改 hive 的密码,因为我们认为我们之前输入了错误的密码
我们还从配置单元日志中得到:
Caused by: org.postgresql.util.PSQLException: FATAL: password authentication failed for user "hive"
所以我们试试
# su - postgres
Last login: Mon Aug 31 15:27:30 UTC 2020 on pts/2
-bash-4.2$ psql
psql (9.2.24)
Type "help" for help.
postgres=# CREATE DATABASE hive;
ERROR: database "hive" already exists
postgres=# CREATE USER hive WITH PASSWORD 'something';
ERROR: role "hive" already exists
但正如我们在上面看到的那样,我们得到 - '错误:角色“蜂巢”已经存在
如何删除当前密码和设置新密码?
参考 - https://community.pivotal.io/s/article/How-to-find-the-Hive-metadata-store-password?language=en_US
您不需要删除旧密码,也没有办法删除它。只需使用 alter role 命令即可。
Alter role test with password ‘something’;