Dieser Commit ist enthalten in:
andryyy 2019-12-24 11:28:10 +01:00
Ursprung 837ce2b0d7
Commit ef833d9af2
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 8EC34FF2794E25EF
2 geänderte Dateien mit 18 neuen und 1 gelöschten Zeilen

16
docs/debug-mysql_upgrade.md Normale Datei
Datei anzeigen

@ -0,0 +1,16 @@
## Run a manual mysql_upgrade
This step is usually not necessary.
```
docker-compose stop mysql-mailcow watchdog-mailcow
docker-compose run --rm --entrypoint '/bin/sh -c "gosu mysql mysqld --skip-grant-tables & sleep 10 && bash && exit 0"' mysql-mailcow
```
As soon as the SQL shell spawned, run `mysql_upgrade` and exit the container:
```
mysql_upgrade
exit
```

Datei anzeigen

@ -45,7 +45,8 @@ nav:
- 'Introduction': debug.md - 'Introduction': debug.md
- 'Logs': 'debug-logs.md' - 'Logs': 'debug-logs.md'
- 'Attach a Container': 'debug-attach_service.md' - 'Attach a Container': 'debug-attach_service.md'
- 'Reset Passwords': 'debug-reset_pw.md' - 'Reset Passwords (incl. SQL)': 'debug-reset_pw.md'
- 'Manual MySQL upgrade': 'debug-mysql_upgrade.md'
- 'Remove Persistent Data': 'debug-rm_volumes.md' - 'Remove Persistent Data': 'debug-rm_volumes.md'
- 'Common Problems': 'debug-common_problems.md' - 'Common Problems': 'debug-common_problems.md'
- 'Admin login to SOGo': 'debug-admin_login_sogo.md' - 'Admin login to SOGo': 'debug-admin_login_sogo.md'