From 2129c050e82f9b73583c2e0f4a71ed56ede83b9e Mon Sep 17 00:00:00 2001 From: David Mc Ken Date: Thu, 8 Dec 2022 21:54:18 -0400 Subject: [PATCH] Minor re-formatting. --- docs/wiki/database-setup/Setup-MySQL-or-MariaDB.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/wiki/database-setup/Setup-MySQL-or-MariaDB.md b/docs/wiki/database-setup/Setup-MySQL-or-MariaDB.md index 139e515..91fbe0f 100644 --- a/docs/wiki/database-setup/Setup-MySQL-or-MariaDB.md +++ b/docs/wiki/database-setup/Setup-MySQL-or-MariaDB.md @@ -2,14 +2,14 @@ This guide will show you how to prepare a MySQL or MariaDB database for PowerDNS-Admin. -### Step-by-step instructions +## Step-by-step instructions 1. ivan@ubuntu:~$ `mysql -u root -p` (then enter your MySQL/MariaDB root users password) 2. mysql> `CREATE DATABASE powerdnsadmin CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;` 3. mysql> `GRANT ALL PRIVILEGES ON powerdnsadmin.* TO 'pdnsadminuser'@'%' IDENTIFIED BY 'p4ssw0rd';` 4. mysql> `FLUSH PRIVILEGES;` 5. mysql> `quit` -**NOTE:** +## Known issues: If you plan to manage large zones, you may encounter some issues while applying changes. This is due to PowerDNS-Admin trying to insert the entire modified zone into the column history.detail. @@ -21,4 +21,4 @@ _Solution_: Convert the column to MEDIUMTEXT: * `USE powerdnsadmin;` -* `ALTER TABLE history MODIFY detail MEDIUMTEXT;` \ No newline at end of file +* `ALTER TABLE history MODIFY detail MEDIUMTEXT;`