We are trying to migrate fisheye to a mysql db, but it fails at restoring the active object tables.
We are using version:
Created the DB with:
mysql> SET GLOBAL default_storage_engine = 'InnoDB';mysql> CREATE DATABASE fisheye CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
mysql> GRANT ALL PRIVILEGES ON fisheye.* TO 'fisheyeuser'@'localhost' IDENTIFIED BY 'password';
mysql> FLUSH PRIVILEGES;
MySQL config:
[mysqld]
character-set-server = utf8mb4
collation-server = utf8mb4_bin
Connection parameters in fisheye:
useUnicode=truecharacterEncoding=UTF8MB4connectionCollation=utf8mb4_bin
When we start the migration, following the tutorial, everything looks okay.
Test connection: no problem. Backing up AO tables no problem. dropping some tables, then settings some constraints and finally restoring AO tables and then fails.
We have tried:
UTF8MB4 => utf8 with utf8_bin collateUTF8MB4, in addition to the failure.Everything seems to me like as described in the tutorials/manuals.
Do any of you have an idea of what the problem might be?
Community moderators have prevented the ability to post new answers.
admins please close this topic, the problem is solved.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.