mysql change innodb_large_prefix

后端 未结 5 1784
遇见更好的自我
遇见更好的自我 2020-12-09 05:56

I just setup debian 8.3 on a VM and installed xampp after this Tutorial. Everything is working, until I tried to create a new table:

create table testtable
(         


        
5条回答
  •  再見小時候
    2020-12-09 06:40

    I'm using Mysql 5.6.17 with WAMP Server I solved the problem by editing the my.ini file Find the category [mysqld] there add the following instructions

    [mysqld]
    innodb_file_format = Barracuda
    innodb_large_prefix = 1
    innodb_file_per_table = ON
    

    Don't forget to save the changes and restart all services.

提交回复
热议问题