Skip to content

Commit d383e29

Browse files
andy-stark-rediskaitlynmichael
authored andcommitted
DOC-4367 updated MySQL prep instructions
1 parent 099504e commit d383e29

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

content/integrate/redis-data-integration/data-pipelines/prepare-dbs/my-sql-mariadb.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ and then run the following commands:
3737
1. Grant the required permissions to the user:
3838

3939
```sql
40+
# MySQL <v8.0
4041
mysql> GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'user' IDENTIFIED BY 'password';
42+
43+
# MySQL v8.0 and above
44+
mysql> GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'user'@'localhost';
4145
```
4246

4347
1. Finalize the user's permissions:

0 commit comments

Comments
 (0)