1 Answer
- Newest
- Most votes
- Most comments
2
What are node type are you using MySqlDataNode or SqlDataNode ? As you have enabled IAM authentication Granting the IAM role in MYSQL would be useful as IAM authentication is taking precedence over the master user and use the same IAM user for Ec2Resource.
- mysql> CREATE USER RDSConnect IDENTIFIED WITH AWSAuthenticationPlugin AS 'RDS';
- mysql> GRANT ALL ON
%
.* TO RDSConnect@%
; - mysql> select * from mysql.user where user='RDSConnect'\G
Also check GRANT has allowed connection from master user and password from any hosts like % for grant. were you able to the connect from EC2 instance using mysql client ?
some useful links:- https://kumo-knowledge-ui-iad-prod.amazon.com/view/article_12180
Relevant content
- asked 2 years ago
- asked 2 years ago
- asked a year ago
- AWS OFFICIALUpdated 24 days ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 4 years ago
- AWS OFFICIALUpdated 3 years ago
Thanks for your comment, I can not open the below link below!