PostgreSQL Role Management

PostgreSQL 数据库管理

首先须要知道Pg的数据库逻辑分层1. Database -> 2. Schema -> 3. Table; Pg 的用户有1.Superuser 2. User Group 3. Userhtml

1. 建立用户

create role name (create role 后面能够有不少options, 下面举一些例子 )sql

  1. create role name login (用户能够connect database, default create cannot login; CREATE USER is equivalent to CREATE ROLE WITH LOGIN)数据库

  2. create role name with login createdb createrole (用户能够create role and create db )post

  3. create role name with login password 'string'ui

  4. alter role name password string设计

2. 建立Group

(这里咱们建立group:test, 以及两个role: dev1, dev2)postgresql

  1. create role user_groupcode

  2. create role dev1 with loginhtm

  3. create role dev2 with login继承

  4. grant test to dev1 (向test添加成员)

  5. grant test to dev2

    lmy=# \du
                                       List of roles
     Role name |                         Attributes                         | Member of 
    -----------+------------------------------------------------------------+-----------
     dev1      |                                                            | {test}
     dev2      |                                                            | {test}
     lmy       | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
     test      | Cannot login                                               | {}
  6. revoke test from dev2 (从test移出成员)

    lmy=# revoke test from dev2;
    REVOKE ROLE
    lmy=# \du
                                       List of roles
     Role name |                         Attributes                         | Member of 
    -----------+------------------------------------------------------------+-----------
     dev1      |                                                            | {test}
     dev2      |                                                            | {}
     lmy       | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
     test      | Cannot login
  7. Group 的设计就是为了方便权限的管理, 因此成员能够继承group的一些权限

    属性: superuser createdb createrole login password 是不会被继承的

    1. grant all on schema.table to role

    2. grant all on all tables in schema schema to role

    3. revoke all on schema.table to role

    4. revoke all on all tables in schema schema to role

Database 管理
  1. Pg的database 默认是任意能够login 的role 均可以access, 若要进行限制
    REVOKE connect ON DATABASE database FROM PUBLIC;

相关文章
相关标签/搜索