Skip to content

Commit d168eac

Browse files
authored
MySQL command: Fixed formatting issues
'' added to IP address.
1 parent 838ee9b commit d168eac

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

articles/migrate/tutorial-discover-mysql-database-instances.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ The following table lists the regions that support MySQL Discovery and Assessmen
6262
6363
> - Use the following commands to grant the necessary privileges to the MySQL user
6464
> ```
65-
> GRANT USAGE ON *.* TO 'username@ip';
66-
> GRANT PROCESS ON *.* TO 'username@ip';
67-
> GRANT SELECT (User, Host, Super_priv, File_priv, Create_tablespace_priv, Shutdown_priv) ON mysql.user TO 'username@ip';
68-
> GRANT SELECT ON information_schema.* TO 'username@ip';
69-
> GRANT SELECT ON performance_schema.* TO 'username@ip';
65+
> GRANT USAGE ON *.* TO 'username'@'ip';
66+
> GRANT PROCESS ON *.* TO 'username'@'ip';
67+
> GRANT SELECT (User, Host, Super_priv, File_priv, Create_tablespace_priv, Shutdown_priv) ON mysql.user TO 'username'@'ip';
68+
> GRANT SELECT ON information_schema.* TO 'username'@'ip';
69+
> GRANT SELECT ON performance_schema.* TO 'username'@'ip';
7070
7171
You can review the discovered MySQL databases after around 24 hours of discovery initiation, through the **Discovered servers** view. To expedite the discovery of your MySQL instances follow the steps:
7272

0 commit comments

Comments
 (0)