Fix the MySQL user creation clause in the installation documentation.

Fixes #2843.
This commit is contained in:
Jyri-Petteri Paloposki 2022-10-06 19:33:22 +03:00
parent 957892055c
commit 3fd631ac6a

View file

@ -58,7 +58,7 @@ Tracks container. In future there should be an official image in Docker Hub. You
# MySQL
$ mysql -u root -p
mysql> CREATE DATABASE tracks;
mysql> GRANT ALL PRIVILEGES ON tracks.* TO yourmysqluser@localhost IDENTIFIED BY 'password-goes-here' WITH GRANT OPTION;
mysql> GRANT ALL PRIVILEGES ON tracks.* TO yourmysqluser@'%' IDENTIFIED BY 'password-goes-here' WITH GRANT OPTION;
# PostgreSQL
$ sudo -u postgres psql