Configuring MySQL and MariaDB
Preliminaries
Section titled “Preliminaries”Check if your MySQL installation has the InnoDB engine enabled:
$ MySQL -h localhost -u root -p> show engines;If another default engine is in use, there are two options:
- Use the com.openkm.db.dialect.MySQL5InnoDBDialect dialect and avoid changing the default MySQL Storage Engine.
- Change the default engine.
Change default engine
Section titled “Change default engine”Modify the MySQL configuration file named my.cnf
Then, under [mysqld], add
default-storage-engine = innodb
Change default charset
Section titled “Change default charset”In Ubuntu 16.04, the default charset configured in MariaDB and MySQL is utf8mb4, but we recommend switching to utf8. To get the recommended charset, you have to modify these files:
/etc/mysql/mariadb.conf.d/50-server.cnf
character-set-server = utf8collation-server = utf8_general_ci/etc/mysql/mariadb.conf.d/50-client.cnf
default-character-set = utf8/etc/mysql/mariadb.conf.d/50-MySQL-clients.cnf
default-character-set = utf8Once modified, you need to restart the database server.
Database creation
Section titled “Database creation”Create a database and user
Section titled “Create a database and user”DROP DATABASE IF EXISTS okmdb;CREATE DATABASE okmdb DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin;CREATE USER openkm@localhost IDENTIFIED BY '*secret*';GRANT ALL ON okmdb.* TO openkm@localhost WITH GRANT OPTION;You can check the database engine with the following:
$ MySQL show -h localhost -u root -p --status okmdb;More information at MySQL: Case Sensitivity in String Searches
Create a database in Persian
Section titled “Create a database in Persian”Set Persian collation and character set in the my.ini configuration file (requires restarting the service):
collation_server = utf8mb4_persian_cicharacter_set_server = utf8mb4Set Persian collation and character set in the current MySQL session (after restarting the service, the default values from my.ini will be used):
SET collation_server = 'utf8mb4_persian_ci';SET character_set_server = 'utf8mb4';Database:
CREATE DATABASE okmdb CHARACTER SET utf8mb4 COLLATE utf8mb4_persian_ci;
CREATE USER openkm@localhost IDENTIFIED BY 'k4M0j4lBi#ed';
GRANT ALL ON okmdb.* TO openkm@localhost WITH GRANT OPTION;Configure your openkm.properties
Section titled “Configure your openkm.properties”Edit the file $TOMCAT_HOME/openkm.properties
spring.jpa.hibernate.ddl-auto=create-onlyspring.jpa.properties.hibernate.dialect=com.openkm.db.dialect.MySQL5InnoDBDialectMySQL Timezone
Section titled “MySQL Timezone”If you want to set your timezone in your JDBC connection to match the timezone configured in your system, you can first see the mappings for both MySQL and MariaDB like this:
SELECT * FROM MySQL.time_zone_nameSo, for example, you could configure your JDBC connection like this if your system timezone is UTC+1:
spring.datasource.url=jdbc:mysql://localhost:3306/okmdb?autoReconnect=true&useUnicode=true&characterEncoding=UTF8&nullNamePatternMatchesAll=true&serverTimezone=Europe/MadridWhere Europe/Madrid is a valid value taken from the table time_zone_name.
Configure Tomcat data sources
Section titled “Configure Tomcat data sources”Edit the file $TOMCAT_HOME/openkm.properties and enable the resource named JDBC/OpenKMDS
MySQL:
Section titled “MySQL:”spring.datasource.driver-class-name=com.mysql.jdbc.Driverspring.datasource.url=jdbc:mysql://localhost:3306/okmdb?autoReconnect=true&useUnicode=true&characterEncoding=UTF8&nullNamePatternMatchesAll=true&serverTimezone=Europe/Madridspring.datasource.username=openkmspring.datasource.password=*secret*MariaDB:
Section titled “MariaDB:”spring.datasource.driver-class-name=org.mariadb.jdbc.Driverspring.datasource.url=jdbc:mariadb://localhost:3306/okmdb?autoReconnect=true&useUnicode=true&characterEncoding=UTF8&nullNamePatternMatchesAll=true&serverTimezone=Europe/Madridspring.datasource.username=openkmspring.datasource.password=*secret*Configure application login
Section titled “Configure application login”Edit the file $TOMCAT_HOME/openkm.properties
authentication.openkm.database=trueRun application
Section titled “Run application”At OpenKM startup, the application will automatically create an empty database structure.
Additional information
Section titled “Additional information”Remove and create MySQL service on Windows.
Section titled “Remove and create MySQL service on Windows.”If you have a MySQL Windows service, you can remove it with one of these command lines:
c:\> mysqld --remove MySQL57or
c:\> sc delete MySQL57Create the service:
c:\> "C:\Program Files\MySQL\MySQL Server 5.7\bin\mysqld.exe" --install MYSQL57 --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.7\my.ini"Migrate from Windows to Linux
Section titled “Migrate from Windows to Linux”When you migrate from Windows to Linux, you must convert lowercase table names to uppercase. The following script will help with it:
select concat('rename table ', table_name, ' to ' , upper(table_name) , ';') from information_schema.tables where table_schema = 'okmdb';Case-insensitive node names
Section titled “Case-insensitive node names”By default, the database is case sensitive. However, by executing:
ALTER TABLE OKM_NODE_BASE MODIFY NBS_NAME varchar(256) COLLATE utf8mb3_general_ci;the NBS_NAME column is modified so that node names are treated in a case-insensitive manner. This collation also ignores accent differences, so names with and without accents are considered equivalent.
As a consequence, it will not be possible to have two documents such as “Más temas.txt” and “mas temas.txt”, since for the table index they are interpreted as the same string and the uniqueness constraint will fail.
If this happens, the system may throw an error like:
ERROR 1062 (23000): Duplicate entry '483ab139-9c20-44a9-8534-ed124a8f37ba-NULL' for key 'IDX_NODE_BASE_PARNAM'This means both values are considered identical and the unique index detects them as duplicates.
To identify problematic nodes, you can run the following query:
SELECT NBS_PARENT, NBS_NAME, COUNT(*) FROM OKM_NODE_BASEGROUP BY NBS_PARENT, LOWER(NBS_NAME) HAVING COUNT(*) > 1;Any duplicates found should be renamed so they stop being treated as equal.
Troubleshooting
Section titled “Troubleshooting”Error “ASCII ‘\\0’ appeared in the statement” when importing a database dump.
Section titled “Error “ASCII ‘\\0’ appeared in the statement” when importing a database dump.”It is possible that the error is caused by the encoding of the SQL file. You should check the file format. For example, with the command:
> file okmdb.sqlokmdb.sql: Little-endian UTF-16 Unicode text, with very long lines, with CRLF line terminatorsIf the file is in UTF-16 format, convert it to UTF-8. For example, use the command:
> iconv -f utf-16 -t utf-8 okmdb.sql > okmdb-good.sql