I'm using a vps using Microsoft Azure and I setup a Linux Ubuntu Server, basically a lamp stack. The url is http://jflorescadev.cloudapp.net/
and it's public ip is 23.97.56.207
. If I put it both on the browser I can access it fine but whenever I try to connect to MySQL using MySQL Workbench it can't connect. Sure I can connect to ssh and make the database manage there but I want to make it on a GUI so I used MySQL Workbench.
All the credentials to connect is already configured like something:
GRANT ALL ON *.* to user@'%' IDENTIFIED BY 'password';
GRANT ALL ON *.* to user@localhost IDENTIFIED BY 'password';
GRANT ALL ON *.* to user@'%' IDENTIFIED BY 'password';
And in my Azure Portal the port is already open. So I check using just the commmand line:
ping 23.97.56.207
or
ping jflorescadev.cloudapp.net
Both gave me a timeout response. Why is that? Thanks