You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/notes/binlog.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,20 @@ The most common symptom is the website displaying the error `'Error establishing
13
13
14
14
Even those experienced with traditional LEMP stacks may struggle to troubleshoot this issue. It is so widespread that it overshadows the remarkable convenience and efficiency of EasyEngine 4.
15
15
16
+
```mermaid {align="left" zoom="true"}
17
+
graph LR
18
+
DB[(MariaDB)]
19
+
LOG@{ shape: docs, label: "mariadb-bin.000001
20
+
mariadb-bin.000002
21
+
mariadb-bin.000003
22
+
mariadb-bin.000004
23
+
..." }
24
+
25
+
DB-->|MriaDB Binlog|LOG
26
+
27
+
style DB fill:#FFDD57,stroke:#333,stroke-width:2px,color:#000
28
+
```
29
+
16
30
## Binary Log (Binlog) in MariaDB
17
31
18
32
MariaDB has a modern logging mechanism called the **Binary Log (Binlog)**, which records all changes to the database except for read-only queries like `SELECT`. The binlog is primarily used for:
0 commit comments