How to enable Innodb as default storage engine ? Solution : Just edit your /etc/my.cnf file and look for this line: skip-innodb If such an entry exists, remove or comment out the entry #skip-innodb Next make the storage_engine variable to Innodb by adding following under [mysqld] section. default-st Full Story »
Home / Tag 'innodb'
Friday, September 11, 2009 | 11:24 am
How to enable InnoDB engine in MySql
To enable innodb engine just comment the line “skip-innodb” from your /etc/my.cnf and restart the mysql-server. To check if Mysql engins innodb ie enables successfully go to mysql prompr and give following command: mysql> show engines; Full Story »
Thursday, September 10, 2009 | 3:57 pm
How to enable INNODB to work with mysql 5.xx?
As the my.cnf file is different from the previous version, and with innodb enabled by default in mysql 5.xx, how can i be sure it really works? I tried installing ORANGEHRM and it says MySQL InnoDB Support Not Available any clue? Just remove any disable options for innodb in /etc/my.cnf (an Full Story »