Merge pull request #289 from timlucmiptev/patch-1

README: update mariadb instructions
This commit is contained in:
wiz 2021-01-12 20:49:35 +09:00 committed by GitHub
commit 46b7e6961e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@ Create database and grant privileges:
MariaDB [(none)]> create database mempool; MariaDB [(none)]> create database mempool;
Query OK, 1 row affected (0.00 sec) Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on mempool.* to 'mempool' identified by 'mempool'; MariaDB [(none)]> grant all privileges on mempool.* to 'mempool'@'%' identified by 'mempool';
Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec)
``` ```