From 0b306fa60ad84ea077111e0ff7b59208ba7bc8a3 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 6 Apr 2018 10:54:58 -0700 Subject: Move documentation to https://docs.kanboard.org/ --- doc/en_US/mysql-configuration.markdown | 84 ---------------------------------- 1 file changed, 84 deletions(-) delete mode 100644 doc/en_US/mysql-configuration.markdown (limited to 'doc/en_US/mysql-configuration.markdown') diff --git a/doc/en_US/mysql-configuration.markdown b/doc/en_US/mysql-configuration.markdown deleted file mode 100644 index e2516e8c..00000000 --- a/doc/en_US/mysql-configuration.markdown +++ /dev/null @@ -1,84 +0,0 @@ -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 -