We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd957ed commit c9e9583Copy full SHA for c9e9583
README.md
@@ -187,7 +187,8 @@ Now that you are logged in, run the following commands.
187
```bash
188
# Creates a user for this computer which uses a password and grant said user all privileges.
189
# Change mydarkflameuser to a custom username and password to a custom password.
190
-GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
+CREATE USER 'mydarkflameuser'@'localhost' IDENTIFIED BY 'password';
191
+GRANT ALL ON *.* TO 'mydarkflameuser'@'localhost' WITH GRANT OPTION;
192
FLUSH PRIVILEGES;
193
194
# Then create a database for Darkflame Universe to use.
0 commit comments