From 24fc16f52edbf755dc101cfa1b30dc413f6e5a61 Mon Sep 17 00:00:00 2001 From: Mars Liu Date: Tue, 23 Nov 2021 00:24:38 +0800 Subject: [PATCH] fly on exercises --- .../config.json" | 11 ++++- .../rds.json" | 6 +++ .../rds.md" | 43 +++++++++++++++++++ 3 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 "data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.json" create mode 100644 "data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.md" diff --git "a/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/config.json" "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/config.json" index 964dcc3..4c23c25 100644 --- "a/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/config.json" +++ "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/config.json" @@ -1,6 +1,13 @@ { "node_id": "pg-586916fe52e245efb399ae862378f87f", - "keywords": ["登录", "身份验证", "授权"], + "keywords": [ + "登录", + "身份验证", + "授权" + ], "children": [], - "export": ["login.json"] + "export": [ + "login.json", + "rds.json" + ] } \ No newline at end of file diff --git "a/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.json" "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.json" new file mode 100644 index 0000000..ac1452b --- /dev/null +++ "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "刘鑫", + "source": "rds.md", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.md" "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.md" new file mode 100644 index 0000000..6cff8a1 --- /dev/null +++ "b/data/1.PostgreSQL\345\210\235\351\230\266/2.PostgreSQL\347\232\204\345\256\211\350\243\205/2.\347\231\273\345\275\225PostgreSQL/rds.md" @@ -0,0 +1,43 @@ +# RDS 管理 + +RShop 公司在云服务商处购买了一个 PostgreSQL RDS 服务,作为 DBA ,你会采取哪些措施来管理它? + +1. 将云服务商提供的用户名口令交付开发团队 +2. 要求开发团队交付数据库部署脚本 +3. 部署并初始化数据库结构 +4. 建立应用用户,采用口令登录,仅赋予数据查询和 DML 权限 +5. 将应用用户的连接方式写入配置中心,供应用系统访问 +6. 待开发团队初始化数据库后,修改用户名口令 +7. 修改用户名口令后,将系统用户和口令保存在可信的存储中 + +## 答案 + +``` +2, 3, 4, 5, 7 +``` + +## 选项 + +### A + +``` +1, 3, 6, 4, 5, 7 +``` + +### B + +``` +1, 3 +``` + +### C + +``` +2, 4, 6 +``` + +### D + +``` +1, 3, 5, 7 +``` \ No newline at end of file -- GitLab