Page 1 of 1

InnoDB in Xampp

PostPosted: 09. May 2005 13:00
by pminetti
Hi!
I need to create a InnoDB tables in MySQL, but aparently in Xampp version there is no InnoDB. Is this right?
How can i do to have InnoDb working on MySQL?

Thanks

PostPosted: 09. May 2005 13:19
by Wiedmann
in my.cnf (/opt/lampp/etc) change line ~48 to
Code: Select all
#skip-innodb

(restart MySQL)

PostPosted: 09. May 2005 14:34
by pminetti
Wiedmann wrote:in my.cnf (/opt/lampp/etc) change line ~48 to
Code: Select all
#skip-innodb

(restart MySQL)

Thanks very much!!

PostPosted: 24. March 2008 17:46
by imsDave
Wiedmann wrote:in my.cnf (/opt/lampp/etc) change line ~48 to
Code: Select all
#skip-innodb

(restart MySQL)

This didn't work for me. Any other ideas?

PostPosted: 24. March 2008 18:02
by imsDave
imsDave wrote:
Wiedmann wrote:in my.cnf (/opt/lampp/etc) change line ~48 to
Code: Select all
#skip-innodb

(restart MySQL)

This didn't work for me. Any other ideas?


I figured it out. If anyone is wondering...

You have to completely stop lampp and then start lampp. You can't simply do a reload. That doesn't work. e.g.

/opt/lampp/lampp stop
/opt/lampp/lampp start

instead of... /opt/lampp/lampp reload

PostPosted: 24. March 2008 22:29
by Nobbie
imsDave wrote:instead of... /opt/lampp/lampp reload


That's the problem - "reload" is not a known action, it must be "restart":

/opt/lampp/lampp restart