Select Page

This is the scrapbook.

Here is where random information goes. Most of them are little snippets of information, stories, quick fixes or references to additional scrapbook-style information – short notes that were helpful to me and might be useful to someone else. Of course, this is only meant as a suggestion, without any guarantee or assurance of function or feasibility. If you would like my professional, technical support, please contact me at https://c-7.de.

Die “Kladde”

Hier landen zufällige Informationen. Die meisten davon sind kleine Informationsschnipsel,Geschichten,  schnelle Lösungen oder Verweise auf zusätzliche Informationen im Sammelalbum-Stil – kurze Notizen, die für mich hilfreich waren und vielleicht auch für jemand anderen nützlich sein können. Natürlich ist das hier nur als Anregung zu verstehen, ohne jegliche Gewähr oder Zusicherung einer Funktion oder Machbarkeit. Wenn Sie meine professionelle, technische Unterstützung möchten, Kontaktieren Sie mich bitte über https://c-7.de

Plesk Migration von Nextcloud

by | Jul 20, 2020 | Software, Tech Corner

Migration von Nextcloud mit dem Plesk Migrations-Tool scheitert falls auf dem Quellsystem MySQL 4-byte Unterstützung konfiguriert ist, aber auf dem Zielsystem nicht,

Internal error

ERROR: PleskExceptionDatabase: DB query failed: SQLSTATE[HY000] [2002] No such file or directory (Mysql.php:60)

Search for related Knowledge Base articles

Abhilfe schafft man dadurch, dass MySQL 4-byte Unterstützung vor der Migration auf der Zielsystem konfiguriert wird.
Check: 
mysql> show variables like 'innodb_file_format';
Falls das nicht "Barracuda" ist, dann 
mysql> SET GLOBAL innodb_file_format=Barracuda;
in der Konfigurationsdatei:
[mysqld]
innodb_large_prefix=true
innodb_file_format=barracuda
innodb_file_per_table=1
Anschließend den Service Neustarten.