mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Fix the MySQL user creation clause in the installation documentation.
Fixes #2843.
This commit is contained in:
parent
957892055c
commit
3fd631ac6a
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ Tracks container. In future there should be an official image in Docker Hub. You
|
||||||
# MySQL
|
# MySQL
|
||||||
$ mysql -u root -p
|
$ mysql -u root -p
|
||||||
mysql> CREATE DATABASE tracks;
|
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
|
# PostgreSQL
|
||||||
$ sudo -u postgres psql
|
$ sudo -u postgres psql
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue