Difference between revisions of "MySQL"
From OpenKM Documentation
m |
|||
Line 25: | Line 25: | ||
{{Advice|[http://en.wikipedia.org/wiki/InnoDB InnoDB] is the preferred engine because it support transactions. [http://en.wikipedia.org/wiki/MyISAM MyISAM] is more responsive but does not support transactions.}} | {{Advice|[http://en.wikipedia.org/wiki/InnoDB InnoDB] is the preferred engine because it support transactions. [http://en.wikipedia.org/wiki/MyISAM MyISAM] is more responsive but does not support transactions.}} | ||
+ | |||
+ | == Database repair == | ||
+ | If you have problems with a database and need to be repaired, you can use this command: | ||
+ | |||
+ | $ mysqlcheck -u root -p --auto-repair --optimize --all-databases | ||
See also: | See also: |
Revision as of 17:26, 22 January 2013
Download MySQL JDBC driver from MySQL Home Page and move it to $JBOSS_HOME/server/default/lib.
- OpenKM 6.0 (also valid for OpenKM 6.1)
- OpenKM 5.0 (also valid for OpenKM 5.1)
- OpenKM 4.1
Change mysql default engine to InnoDB
Check if your MySQL installation has InnoDB engin enabled:
$ mysql -h localhost -u root -p mysql> show engines;
In order to change the default storage engine edit /etc/mysql/my.cnf and under [mysqld] section in your ini file, and add:
default-storage-engine = innodb
InnoDB is the preferred engine because it support transactions. MyISAM is more responsive but does not support transactions. |
Database repair
If you have problems with a database and need to be repaired, you can use this command:
$ mysqlcheck -u root -p --auto-repair --optimize --all-databases
See also: