Postgresql建立使用者以及配置相應的許可權
1) 啟動資料庫服務,使用超級使用者 postgres 建立應用使用者 appuser,賦權createdb、login,appuser 的密碼設定為 1qaz@WSX,並體現到.pgpass 檔案中, 以便 appuser 免密登入,appuser 使用者的密碼在 2022 年 05 月 01 日之前是有效的。
2) 建立屬主為appuser 的表空間並命名為appuser,指向/appuser(若沒有此目錄請自行建立並管理許可權);
3) 建立appdb 資料庫,owner 是appuser(要求appdb 資料庫要在exam 表空間內),並要求實現:
a.回收 appdb 中的 public schema 上的 create object 許可權。
c. 以 appuser 使用者在 appdb 資料庫中建立 app 表(id int),app 表的 schema是 appuser
其他的非超級使用者不能 connect 到 appdb 資料庫中
4) 自行建立 readonlyuser 使用者,要求如下:
a. readonlyuser 能連線到 appdb 中
b. 密碼設定為 1qaz@WSX,並體現到.pgpass 檔案中,以便 readonlyuser 免密登入
c. readonlyuser 使用者有對 appuser 使用者下 appuser schema 下所有表(包括將來新建立的表)的只讀許可權;
[pg10@data01 ~]$ psql -d postgres
psql (10.14)
Type "help" for help.
postgres=# create user appuser with createdb login valid until '2022-05-01' password '1qaz@WSX';
CREATE ROLE
postgres=# \q
[pg10@data01 ~]$ su - root
Password:
Last login: Mon Jan 4 22:02:58 CST 2021 from gateway on pts/1
[root@data01 ~]# mkdir /appuser
[root@data01 ~]# su - pg10
Last login: Mon Jan 4 22:03:26 CST 2021 on pts/1
[pg10@data01 ~]$ vim .pgpass
[pg10@data01 ~]$ cat .pgpass br/>data01:5666:postgres:postgres:1qaz@WSX
data01:5666:postgres:appuser:1qaz@WSX
[pg10@data01 ~]$ psql -d postgres -U postgres
psql (10.14)
Type "help" for help.
postgres=# create tablespace appuser owner appuser location '/appuser';
CREATE TABLESPACE
postgres=# create database appdb with owner appuser tablespace appuser;
CREATE DATABASE
postgres=# \c appdb appuser
You are now connected to database "appdb" as user "appuser".
appdb=> exit
[pg10@data01 ~]$ psql -d postgres -U postgres
psql (10.14)
Type "help" for help.
postgres=# \c appdb postgres
You are now connected to database "appdb" as user "postgres".
appdb=# revoke create on schema public from public;
REVOKE
appdb=# \c appdb appuser
You are now connected to database "appdb" as user "appuser".
appdb=> create schema appuser;
CREATE SCHEMA
appdb=> create table appuser.app(id int);
CREATE TABLE
appdb=> revoke connect on database appdb from public;
REVOKE
appdb=>
appdb=> \c appdb postgres
You are now connected to database "appdb" as user "postgres".
appdb=# create user readonlyuser with password '1qaz@WSX';
CREATE ROLE
appdb=# grant connect on database appdb to readonlyuser;
GRANT
appdb=# \c appdb appuser
You are now connected to database "appdb" as user "appuser".
appdb=> grant usage on schema appuser to readonlyuser;
GRANT
appdb=> grant select on all tables in schema appuser to readonlyuser;
GRANT
appdb=> alter default privileges grant select on tables to readonlyuser;
ALTER DEFAULT PRIVILEGES