docs: fix MYSQL_PITR.md - remove non-existent --pitr flag

Regular backups already capture binlog position automatically when
PITR is enabled at the MySQL level. No special flag needed.
This commit is contained in:
2025-12-15 15:12:50 +01:00
parent 51fc570fc7
commit f29e6fe102

View File

@@ -110,10 +110,12 @@ dbbackup pitr mysql-enable --archive-dir /backups/binlog_archive
### 3. Create a Base Backup
```bash
# Create a PITR-capable backup
dbbackup backup single mydb --pitr
# Create a backup - binlog position is automatically recorded
dbbackup backup single mydb
```
> **Note:** All backups automatically capture the current binlog position when PITR is enabled at the MySQL level. This position is stored in the backup metadata and used as the starting point for binlog replay during recovery.
### 4. Start Binlog Archiving
```bash