I am running an Amazon Linux EC2 instance with MySQL v 5.5.54. I am also running a dev version of my application locally. Is there a way to connect to this remote MySQL database from my local machine?
I tried the standard:
mysql -h <my dns name> -P 3306 -u myuser -p
but my session hangs and nothing gets returned. I am also not seeing any connection attempts in EC2's MySQL logs.