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 a07fbab commit fdc4c5aCopy full SHA for fdc4c5a
1 file changed
INSTALL.md
@@ -166,7 +166,10 @@ $ mysql
166
mysql> CREATE DATABASE patchman CHARACTER SET utf8 COLLATE utf8_general_ci;
167
Query OK, 1 row affected (0.00 sec)
168
169
-mysql> GRANT ALL PRIVILEGES ON patchman.* TO patchman@localhost IDENTIFIED BY 'changeme';
+mysql> CREATE USER patchman@localhost IDENTIFIED BY 'changeme';
170
+Query OK, 0 rows affected (0.00 sec)
171
+
172
+mysql> GRANT ALL PRIVILEGES ON patchman.* TO patchman@localhost;
173
Query OK, 0 rows affected (0.00 sec)
174
```
175
0 commit comments