File tree Expand file tree Collapse file tree 1 file changed +22
-5
lines changed
weops/pipe-tools/bk_pkg/vastbase Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change 1616
1717### 使用指引
1818
19- 登录数据库并执行命令创建蓝鲸监控账号和授权:
19+ 登录数据库并执行命令创建蓝鲸监控账号和授权:
2020
21- ``` bash
22- # 创建用户: weops 密码: Weops123!
23- CREATE USER weops123 IDENTIFIED BY " Weops123!" ;
24- ```
21+ 创建用户: weops 密码: Weops123!
22+ ``` bash
23+ CREATE USER weops IDENTIFIED BY " Weops123!" ;
24+
25+ GRANT USAGE ON TABLESPACE pg_global TO " weops" ;
26+ GRANT CREATE ON TABLESPACE pg_global TO " weops" ;
27+
28+ GRANT USAGE ON SCHEMA dbms_pipe TO " weops" ;
29+ GRANT SELECT ON ALL TABLES IN SCHEMA dbms_pipe TO " weops" ;
30+
31+ GRANT USAGE ON SCHEMA dbe_pldeveloper TO " weops" ;
32+
33+ GRANT SELECT ON pg_catalog.pg_authid TO " weops" ;
34+
35+ GRANT USAGE ON SCHEMA dbe_perf TO " weops" ;
36+ GRANT SELECT ON ALL TABLES IN SCHEMA dbe_perf TO " weops" ;
37+
38+ GRANT USAGE ON SCHEMA sys TO " weops" ;
39+ GRANT SELECT ON ALL TABLES IN SCHEMA sys TO " weops" ;
40+
41+ ```
2542
2643### 参数说明
2744
You can’t perform that action at this time.
0 commit comments