MySQL/MariaDB Configuration =========================== By default Kanboard use Sqlite to stores its data. However it's possible to use MySQL or MariaDB instead of Sqlite. Requirements ------------ - MySQL server - The PHP extension `pdo_mysql` installed Note: Kanboard is tested with **MySQL >= 5.5 and MariaDB >= 10.0** MySQL configuration ------------------- ### Create a database The first step is to create a database on your MySQL server. By example, you can do that with the command line mysql client: ```sql CREATE DATABASE kanboard; ``` You can then assign the required permissions on the database: ```sql GRANT ALTER, CREATE, DELETE, DROP, INDEX, INSERT, REFERENCES, SELECT, UPDATE ON kanboard.* TO 'USERNAME'@'HOST' IDENTIFIED BY 'PASSWORD'; ``` ### Create a config file The file `config.php` should contains those values: ```php