updated add new users example to reflect the generalised form

JurgenKuyper 2022-11-07 08:40:32 +01:00
parent 77aaedcf45
commit 48e8cc7e45
1 changed files with 1 additions and 1 deletions

@ -92,7 +92,7 @@ mysql> exit</pre></code>
<pre><code>mysql -u root -p
[Enter mysql root password if there is one]
mysql> CREATE USER 'minecraftserver'@'localhost' IDENTIFIED BY 'password5678';
mysql> GRANT CREATE, DELETE, INSERT, SELECT, UPDATE, INDEX ON 'minecraftserver'@'localhost'';
mysql> GRANT CREATE, DELETE, INSERT, SELECT, UPDATE, INDEX ON &lt;dynmapDatabase.* TO 'minecraftserver'@'localhost'';
mysql> FLUSH PRIVILEGES;
mysql> exit</pre></code>
</details>