mysql_full_unicode_support#File_format issue while installing Moodle with MariaDB. Your database uses Antelope as the file format. 'innodb_large_prefix' to 'ON'
Your
database uses Antelope as the file format. Full UTF-8 support in MySQL and
MariaDB requires the Barracuda file format. Please switch to the Barracuda file
format. See the documentation MySQL full unicode support for details.
Checkmysql_full_unicode_support#Large_prefix
For
full support of UTF-8 both MySQL and MariaDB require you to change your MySQL
setting 'innodb_large_prefix' to 'ON'. See the documentation for further
details.
Check
If you get the above mention error. Try the following solution.
Login to mysql and run the following command.
mysql> SET GLOBAL innodb_file_format = barracuda
mnysql> SET GLOBAL innodb_file_per_table = 1
mnysql> SET GLOBAL innodb_large_prefix = 'on'
And refresh the browser.
Comments
Post a Comment