Skip to content

Commit 6c99363

Browse files
Merge pull request #270595 from AjayBathini-MSFT/patch-156
(AzureCXP) fixes MicrosoftDocs/azure-docs#121122
2 parents e842b99 + d992269 commit 6c99363

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/mysql/single-server/how-to-data-in-replication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ The following steps prepare and configure the MySQL server hosted on-premises, i
152152

153153
```sql
154154
CREATE USER 'syncuser'@'%' IDENTIFIED BY 'yourpassword';
155-
GRANT REPLICATION SLAVE ON *.* TO ' syncuser'@'%' REQUIRE SSL;
155+
GRANT REPLICATION SLAVE ON *.* TO 'syncuser'@'%' REQUIRE SSL;
156156
```
157157

158158
*Replication without SSL*
@@ -161,7 +161,7 @@ The following steps prepare and configure the MySQL server hosted on-premises, i
161161
162162
```sql
163163
CREATE USER 'syncuser'@'%' IDENTIFIED BY 'yourpassword';
164-
GRANT REPLICATION SLAVE ON *.* TO ' syncuser'@'%';
164+
GRANT REPLICATION SLAVE ON *.* TO 'syncuser'@'%';
165165
```
166166
167167
**MySQL Workbench**

0 commit comments

Comments
 (0)