(in my.cnf
) I've tried default-storage-engine = myisam
, skip-innodb
, and commented out every innodb features, but none of them works
Asked
Active
Viewed 6,916 times
3 Answers
2
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;

HopelessN00b
- 53,795
- 33
- 135
- 209

p4guru
- 963
- 1
- 8
- 16
0
add this to your mysql config file
disabled_storage_engines="MyISAM,BLACKHOLE,FEDERATED,ARCHIVE"
It's must be usefull for mysql5.7.
-2
I think InnoDB cannot be disabled since this is killer feature of MariaDB

jambanmu
- 1
-
This is not correct. – snap Sep 03 '11 at 10:16