Skip to content

Commit fdc4c5a

Browse files
authored
update mysql instructions
1 parent a07fbab commit fdc4c5a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

INSTALL.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,10 @@ $ mysql
166166
mysql> CREATE DATABASE patchman CHARACTER SET utf8 COLLATE utf8_general_ci;
167167
Query OK, 1 row affected (0.00 sec)
168168
169-
mysql> GRANT ALL PRIVILEGES ON patchman.* TO patchman@localhost IDENTIFIED BY 'changeme';
169+
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;
170173
Query OK, 0 rows affected (0.00 sec)
171174
```
172175

0 commit comments

Comments
 (0)