MySQL
From OpenKM Documentation
Revision as of 18:12, 14 February 2012 by Pavila (talk | contribs) (→Change mysql default engine to InnoDB)
Download MySQL JDBC driver from MySQL Home Page and move it to $JBOSS_HOME/server/default/lib.
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. |
See also:
- Converting Tables from Other Storage Engines to InnoDB
- Convert your MySQL database from MyISAM to InnoDB
- OpenKM 5.0 (also valid for OpenKM 5.1)
- OpenKM 4.1