Files
webmin/mysql/help/binlogs_format.html
Ilia Ross b3b81af34f Add MySQL binary log management
This PR adds a "Binary Logging" page to configure log format, file size and retention, rotate or purge logs, and support restore sessions that do not write back to binary logs.
2026-08-28 02:16:50 +02:00

11 lines
506 B
HTML

<header>Binary log format</header>
<p>Controls how changes are recorded in the binary logs. <b>Row based</b>
logs the actual row changes, which is the most reliable format and is required
for point-in-time recovery of individual databases. <b>Statement based</b>
logs the SQL statements that were executed, and <b>Mixed</b> switches between
the two automatically.</p>
<p>Row based logging is recommended, as statement and mixed logs cannot be
safely filtered by database when replaying transactions.</p>