Merge pull request #8 from broedli/master

Added info blocks to migration chapter
Dieser Commit ist enthalten in:
broedli 2017-05-06 14:23:44 +02:00 committet von GitHub
Commit 060f38d9ce
2 geänderte Dateien mit 12 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -1,8 +1,10 @@
**WARNING** Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure. !!! warning
Please be adviced that this guide is a first draft. Mailcow: dockerized changed quite a lot on its DB configuration. It now uses the InnoDB file format `Barracuda` and the `utf8mb4` character set. There is also some change to the DB / TABLE structure.
Also note that this guide doesn't touch on the users settings like *Spamlevels*, *TLS Settings*, etc. nor the export / import of your roundcube or SOGo settings. !!! info
Also note that this guide doesn't touch on the users settings like *Spamlevels*, *TLS Settings*, etc. nor the export / import of your roundcube or SOGo settings.
Lastly please check the section on how to [import / restore](backup_maildir/#restore) your maildir backup to get an idea how to migrate your mails. Lastly please check the section on how to [import / restore](backup_maildir/#restore) your maildir backup to get an idea how to migrate your mails.
## Create mailcow db backups ## Create mailcow db backups
@ -59,9 +61,12 @@ mysqldump --replace --no-create-info --default-character-set=utf8mb4 \
alias alias_domain domain domain_admins mailbox quota2 sender_acl > backup_mailcow.sql alias alias_domain domain domain_admins mailbox quota2 sender_acl > backup_mailcow.sql
``` ```
- **--replace**: Write `REPLACE` statements rather than `INSERT` statements !!! Info
- **--no-create-info**: Don't write `CREATE TABLE` statements. **--replace**: Write `REPLACE` statements rather than `INSERT` statements
- **--default-character-set** make sure our exported default charset is *utf8mb4*.
**--no-create-info**: Don't write `CREATE TABLE` statements.
**--default-character-set** make sure our exported default charset is *utf8mb4*.
## Prepare mailcow: dockerized ## Prepare mailcow: dockerized

Datei anzeigen

@ -15,7 +15,7 @@ pages:
- 'Prerequisites': - 'Prerequisites':
- 'Prepare Your System': 'requirements.md' - 'Prepare Your System': 'requirements.md'
- 'DNS Setup': 'dns.md' - 'DNS Setup': 'dns.md'
- 'Migrating from mailcow 0.14': 'mc14_merge.md' - 'Migrating from mailcow 0.14': 'mc14_migrate.md'
- 'Installation & Update': - 'Installation & Update':
- 'Installation': 'install.md' - 'Installation': 'install.md'
- 'Update': 'update.md' - 'Update': 'update.md'