建立唯讀使用者

2022-05-28 15:21:10 字數 396 閱讀 3260

1.建立乙個使用者名為readonly密碼為123456的使用者

create user readonly with encrypted password '123456';

2.更新使用者預設為唯讀事務

alter user readonly set default_transaction_read_only=on;

3.把所有庫的public的usage許可權給到readonly

grant usage on schema public to readonly;      

4.授予select許可權(要進入到具體資料庫操作在哪個db環境下執行就授予那個db的許可權)

grant select on all tables in schema public to readonly;

PG建立唯讀使用者

1.建立乙個使用者名為test密碼為passwd的使用者 create user t with encrypted password passwd 2.使用者唯讀事務 alter user test set default transaction read only on 3.把所有庫的語言的usa...

Oracle資料建立唯讀使用者

記得授權完成後重新登入使用者,不然也會遇到許可權不足的一些問題 建立乙個使用者 create user test identified by 123456授予連線許可權 grant connect to test 授予只能查詢的許可權 授權所有表的唯讀許可權 grant select any tab...

linux建立使用者唯讀許可權

6.將允許執行的命令鏈結到 home bin目錄 第二步 在相應服務的log日誌資料夾授權 本文摘自 useradd s bin bash test這步不要指定rbash,否側cd等內建命令無法使用 passwd testmkdir home test binchown root.home test...