cewebugil Asked: 2011-03-10 06:59:39 +0800 CST2011-03-10 06:59:39 +0800 CST 2011-03-10 06:59:39 +0800 CST How to disable all MariaDB storage engine except MyISAM? 772 (in my.cnf) I've tried default-storage-engine = myisam, skip-innodb, and commented out every innodb features, but none of them works innodb myisam mariadb 3 Answers Voted p4guru 2011-09-03T18:33:01+08:002011-09-03T18:33:01+08:00 Maria can't disable the Aria/Maria storage engine as it's needed. You can disable most of the others via skip-innodb skip-pbxt skip-federated just type the following to show all storage engines available and it's current status mysql> SHOW PLUGINS; luoziluojun 2017-04-12T16:52:27+08:002017-04-12T16:52:27+08:00 add this to your mysql config file disabled_storage_engines="MyISAM,BLACKHOLE,FEDERATED,ARCHIVE" It's must be usefull for mysql5.7. jambanmu 2011-03-11T07:35:20+08:002011-03-11T07:35:20+08:00 I think InnoDB cannot be disabled since this is killer feature of MariaDB
Maria can't disable the Aria/Maria storage engine as it's needed. You can disable most of the others via
skip-innodb skip-pbxt skip-federated
just type the following to show all storage engines available and it's current status
add this to your mysql config file
disabled_storage_engines="MyISAM,BLACKHOLE,FEDERATED,ARCHIVE"
It's must be usefull for mysql5.7.
I think InnoDB cannot be disabled since this is killer feature of MariaDB