unknow collation: ‘utf8mb4_0900_ai_ci’

Hi!
Good day.
How can I import the version 14.2 database into a local environment?
MySQL send error unknow collation: ‘utf8mb4_0900_ai_ci’
Please can help me.
Thanks!

Parents Reply
  • Hey Eduardo,

    That explains it! MariaDB does not support utf8mb4_0900_ai_ci, which is why you're getting the "Unknown collation" error. Even though you expected MySQL 8.2, you're actually running MariaDB, which lacks this specific collation because it does not follow MySQL’s Unicode collation updates.

    Since MariaDB and MySQL are separate projects, the only way to get utf8mb4_0900_ai_ci is to remove MariaDB and install official MySQL.

Children