0
The answer I got in this post: https://stackoverflow.com/questions/37212945/aws-cant-connect-to-rds-database-from-my-machine
I will translate here:
1 - Go to EC2 Dashboard
2 - Click on Security Groups tab
3 - Select only the RDS database security group. You will see the security group details at the bottom
4 - Click Inbound tab
5 - Edit button click
6 - Add Type:MYSQL/Aurora;Protocol:TCP;Range:3306;Source:0.0.0.0/0
Note that this procedure allows any source (0.0.0.0/0) to connect to your bank, it can be a security issue.
– Julio Faerman
Fact, how can I fix this ?
– alexjosesilva
if I replace this value for my machine’s ip I can fix this problem ?
– alexjosesilva
Yes, or a network track you trust, ideally over TLS.
– Julio Faerman