How to disable all MariaDB storage engine except MyISAM?

6,634

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;
Share:
6,634

Related videos on Youtube

J_Kay
Author by

J_Kay

Updated on September 17, 2022

Comments

  • J_Kay
    J_Kay over 1 year

    (in my.cnf) I've tried default-storage-engine = myisam, skip-innodb, and commented out every innodb features, but none of them works

  • snap
    snap over 12 years
    This is not correct.