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
docs: [#315] Update backup verification guide with MySQL-specific learnings
- Document expected PROCESS privilege warning in MySQL backups (not fatal)
- Add actual MySQL backup output example with warning message
- Clarify that backup completes successfully despite warning
- Detail MySQL SQL dump verification steps with actual output
- Show how to verify compressed SQL file contains valid database structure
- Add checkmarks confirming expected backup file properties
- Improve clarity on MySQL vs SQLite backup file differences
**For MySQL deployments, you may see this warning** (this is **expected and not fatal**):
227
+
228
+
```text
229
+
[2026-02-03 19:47:32] Starting MySQL backup: tracker@mysql:3306
230
+
mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
231
+
[2026-02-03 19:47:32] MySQL backup completed: /backups/mysql/mysql_20260203_194732.sql.gz
232
+
[2026-02-03 19:47:32] Size: 4.0K
233
+
```
234
+
235
+
The warning appears because the backup user (`tracker_user`) has all necessary permissions for table backup, but lacks the PROCESS privilege for tablespace metadata. The backup still completes successfully with all table data intact.
0 commit comments