-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
202 lines (187 loc) · 8.11 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
site_name: MySQL WIKI
site_description: "MySQL WIKI"
site_author: "fengzhao"
site_url: "https://mysql.fengzhao.me"
# Repository
repo_name: "fengzhao/mysql-wiki"
repo_url: "https://github.com/fengzhao/mysql-wiki"
# Copyright
copyright: "Copyleft © 2020 - 2023 fengzhao"
theme:
name: material
language: "zh"
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: "indigo"
accent: "indigo"
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: "Roboto"
code: "Roboto Mono"
plugins:
- search
- minify:
minify_html: true
- git-revision-date-localized:
type: iso_datetime
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: false
- toc:
permalink: true
- footnotes
- meta
- def_list
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_png
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tilde
nav:
- "Home": index.md
- "MySQL相关资源": resources.md
# - "赞赏支持": appreciate.md
- "MySQL入门":
- "0. MySQL的起源和分支": basic/0.mysql_source.md
- "1. 数据库概述": basic/1.introduce_database.md
- "2. 安装 MySQL": basic/2.install_mysql.md
- "3. MySQL可执行程序": basic/3.mysql_execute_command.md
- "4. SQL语句和语法": basic/4.sql.md
- "5. 关系模型和关系代数": basic/5.relation.md
- "6. SQL题目练习": basic/6.sql_practice.md
- "7. MySQL数据类型": basic/7.MySQL数据类型.md
- "8. MySQL字符集和排序规则": basic/8.MySQL字符集和排序规则.md
- "9. MySQL逻辑架构和性能优化概述": basic/9.mysql_architecture.md
- "10. 数据库事务和锁": basic/10.sql-Transaction.md
- "11. Facts 数据": basic/Facts.md
- "12. MySQL内存概述": basic/12.MySQL内存概述.md
- "13. MySQL数据字典": basic/14.MySQL数据字典.md
- "14. Blocks": basic/Blocks.md
- "15. Playbook 高级特性": basic/Playbook-features.md
- "扩展阅读(深入必读)":
- "1. YAML 语法": basic/Reference/Yaml.md
- "2. Vaults 加密数据": basic/Reference/Vaults.md
- "3. 关键字使用": basic/Reference/Keywords.md
- "4. 模块索引": basic/Reference/Module.md
- "5. Ansible 配置": basic/Reference/Config.md
- "Windows":
- "1. 管理 Windows 主机": basic/Windows/manager-windows.md
- "SQL特性":
- "1.SQL2023新特性": sql/sql2023.md
- "MySQL基础":
- "1.索引相关": foundmental/2.MySQL索引.md
- "2.数据库设计": dev/02.数据库设计.md
- "3.在线DDL": dev/03.在线DDL.md
- "4.联表算法": dev/04.MySQL连表查询算法.md
- "5.insert语法": dev/05.MySQL-insert语法.md
- "使用动态主机管理云服务": advanced/dynamic-inventory.md
- "Ansible 安全":
- "Ansible 控制节点安全": advanced/security/index.md
- "- 节点安全: 防火墙设置": advanced/security/firewall.md
- "- 节点安全: ssh登录二次验证": advanced/security/ssh-2step.md
- "- 节点安全: 命令审计": advanced/security/audit.md
- "- 节点安全: 加密主机清单": advanced/security/vault-hosts.md
- 过滤 Ansible 危险指令: advanced/security/filter-command.md
- "Ansible 实践":
- "Ansible Task片段": advanced/practice/snippets.md
- "在 Jenkins 中使用 Ansible": advanced/practice/jenkins-and-ansible.md
- "使用 ARA 记录 Ansible 执行结果": advanced/ara.md
- "使用 Ansible-cmdb": advanced/ansible-cmdb.md
- "MySQL高级":
- "深入理解innoDB存储引擎":
- "1.MySQL架构到innoDB架构": advanced/1.MySQL架构到InnoDB架构.md
- "2.InnoDB——简介": advanced/2.InnoDB——简介.md
- "3.InnoDB关键特性": advanced/3.InnoDB——关键特性.md
- "4.InnoDB内存结构——缓冲池": advanced/4.InnoDB内存结构——缓冲池.md
- "5.搭建MySQL源代码调试debug环境": advanced/5.MySQL源代码调试环境.md
- "OLAP":
- "1.0.OLAP概述": olap/01.OLAP概述.md
- "MySQL协议分析":
- "1.协议分析概述": foundmental/1.MySQL协议分析与抓包概述.md
- "pdb 本地调试": dev/debug/pdb.md
- "PyCharm 远程调试": dev/debug/pycharm.md
- "模块调试": dev/debug/module-debug.md
- "Module 开发":
- "Module 开发说明": dev/modules/index.md
- "创建一个简单的module": dev/modules/remote_copy.md
- "module 示例: 连接华为交换机": dev/modules/huawei-switch.md
- "module 示例: 其他语言开发": dev/modules/module-outher-dev.md
- "module 示例: dir": dev/modules/module-shell-dir.md
- "module 示例: docker_facts": dev/modules/module-docker-facts.md
- "module 示例: wechat": dev/modules/module-wechat.md
- "module 的返回值": dev/modules/module-return.md
- "module 的帮助文档": dev/modules/module-doc.md
- "module 架构": dev/modules/module-architecture.md
- "module 工具类": dev/modules/module-utilities.md
- "Plugin 开发":
- "Plugin 开发说明": dev/plugins/index.md
- "Action 示例: hello": dev/plugins/Action-hello.md
- "Callback 示例: BlackHole": dev/plugins/Callback-BlackHole.md
- "Filter 示例: split": dev/plugins/Filter-split.md
- "Inventory 示例: csv": dev/plugins/Inventory-csv.md
- "Lookup 示例: github_status": dev/plugins/Lookup-github-status.md
- "Vars 示例: csv_vars": dev/plugins/Vars-csv-vars.md
- "API 使用":
- "API 使用说明": dev/api/index.md
- "使用 API 运行任务": dev/api/api-task.md
- "使用 API 运行 Palybook": dev/api/api-playbook.md
- "使用 suitable": dev/api/api-suitable.md
- "使用 ansible runner": dev/api/api-ansible-runner.md
- "MySQL调优":
#- "Ansible 架构": dev/ansible-architecture.md
- "调优概述": optimize/1.overview.md
- "数据大小": optimize/many_tables.md
- "Ansible Awx": ui/awx.md
- "数据库结构调优": optimize/.md
- "PostgreSQL":
- "0. PostgreSQL简介": postgresql/01.postgresql简介.md
- "1. PogreSQL安装": postgresql/02.postgresql安装.md
- "2. PogreSQL体系架构": postgresql/03.体系架构.md
- "3. PogreSQL访问控制": postgresql/04.postgresql访问控制.md
- "4. 常用SQL": postgresql/05.常用SQL.md
- "4. 继承": postgresql/05.继承表.md
- "MongoDB":
- "0. MongoDB概述": mongodb/01.简介.md
- "认证":
- kerberos-client: roles/auth/kerberos-client.md
- kerberos-server: roles/auth/kerberos-server.md
- openldap: roles/auth/openldap.md
- "Redis":
- "0. redis概述": redis/01.redis简介.md
- "2. redis客户端": redis/02.redis客户端.md
- "认证":
- kerberos-client: roles/auth/kerberos-client.md
- kerberos-server: roles/auth/kerberos-server.md
- openldap: roles/auth/openldap.md
- "算法":
- "0. 算法概述": 算法/01.算法和数据结构概述.md
- "2. redis客户端": redis/02.redis客户端.md
- "认证":
- kerberos-client: roles/auth/kerberos-client.md
- kerberos-server: roles/auth/kerberos-server.md
- openldap: roles/auth/openldap.md
extra_css:
- stylesheets/extra.css