Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable innodb in mysql?

Tags:

database

mysql

I added the line 'skip_innodb' in my.cnf file to disable innodb and restarted the mysqld. But,It is not effecting in database. Is there any alternative solutions ?

like image 353
Dhileepan Avatar asked Aug 02 '12 07:08

Dhileepan


1 Answers

If you are using MySql 5.5 or above,

ignore-builtin-innodb

and

default-storage-engine = myisam

under

[mysqld]

in /etc/my.cnf

like image 78
Akash KC Avatar answered Oct 19 '22 13:10

Akash KC