gpt4 book ai didi

postgresql - 亚马逊 RDS PostgreSQL : how to create user?

转载 作者:行者123 更新时间:2023-11-29 11:26:36 27 4
gpt4 key购买 nike

我在一个 RDS 数据库实例中创建了 3 个数据库。这些数据库的所有者是用户 postgres。我想创建新的 super 用户。当我尝试创建它时,我收到:“用户‘postgres’没有编辑用户的权限”但它是我可以使用的一个用户。如何创建新用户?

最佳答案

看起来您需要使用 CREATE ROLE 并将 rds_superuser 角色分配给新用户。它记录在这里 http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.PostgreSQL.CommonDBATasks.html#Appendix.PostgreSQL.CommonDBATasks.Roles

我也会粘贴说明:

postgres=> create role testuser with password 'testuser' login;   
CREATE ROLE
postgres=> grant rds_superuser to testuser;
GRANT ROLE
postgres=>

关于postgresql - 亚马逊 RDS PostgreSQL : how to create user?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47249546/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com