Minor re-formatting.

This commit is contained in:
David Mc Ken 2022-12-08 21:54:18 -04:00
parent 4952f2de06
commit 2129c050e8

View File

@ -2,14 +2,14 @@
This guide will show you how to prepare a MySQL or MariaDB database for PowerDNS-Admin. 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) 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;` 2. mysql> `CREATE DATABASE powerdnsadmin CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;`
3. mysql> `GRANT ALL PRIVILEGES ON powerdnsadmin.* TO 'pdnsadminuser'@'%' IDENTIFIED BY 'p4ssw0rd';` 3. mysql> `GRANT ALL PRIVILEGES ON powerdnsadmin.* TO 'pdnsadminuser'@'%' IDENTIFIED BY 'p4ssw0rd';`
4. mysql> `FLUSH PRIVILEGES;` 4. mysql> `FLUSH PRIVILEGES;`
5. mysql> `quit` 5. mysql> `quit`
**NOTE:** ## Known issues:
If you plan to manage large zones, you may encounter some issues while applying changes. 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. This is due to PowerDNS-Admin trying to insert the entire modified zone into the column history.detail.