Page 1 of 1

#mysql50#database after MariaDB conversion

Posted: Fri Jul 01, 2022 5:37 pm
by teethdood
after MariaDB conversion from MySQL, if your database shows up as #mysql50#database instead of database, then the directory data structure needs to be altered. As always, make a backup.

mysql -u root -p
MariaDB> ALTER DATABASE `#mysql50#database` UPGRADE DATA DIRECTORY NAME;

Note: use ` character above the ~ to the left of 1, not the single quote '

Hope it helps