mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 00:38:57 +00:00
better mysql instructions
This commit is contained in:
parent
00369be990
commit
d06f89ed3f
1 changed files with 1 additions and 2 deletions
|
@ -27,8 +27,7 @@ If this doesn't work, try using ``pip`` instead. If it still doesn't work, you m
|
||||||
```
|
```
|
||||||
CREATE DATABASE `fedibooks`;
|
CREATE DATABASE `fedibooks`;
|
||||||
CREATE USER 'myuser' IDENTIFIED BY 'mypassword';
|
CREATE USER 'myuser' IDENTIFIED BY 'mypassword';
|
||||||
GRANT USAGE ON *.* TO 'myuser'@localhost IDENTIFIED BY 'mypassword';
|
GRANT ALL PRIVILEGES ON `fedibooks`.* TO 'myuser';
|
||||||
GRANT ALL privileges ON `fedibooks`.* TO 'myuser'@localhost;
|
|
||||||
FLUSH PRIVILEGES;
|
FLUSH PRIVILEGES;
|
||||||
exit
|
exit
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue