Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi mahiyar, <br> <br>Everything seems to be ok in the MySQL configuration file but, can you post the output of <code>netstat -ntulp</code>
Hi, <br>I have a similar problem: <br> <br>Trying to get remote access to the mysql server on Magento server (188.226.210.183). <br> <br>I have created a DB user with access from remote servers host = % <br>And I have altered the bind-address in my.cnf file to be 188.226.210.183. <br> <br>I then did a mysql restart and a server reboot (just in case). <br> <br>I checked that the port was LISTEN(ING). And all looks good there: <br>tcp 0 0 188.226.210.183:3306 0.0.0.0:* LISTEN <br> <br>However I still cannot connect remotely - <br>“ERROR 2013 (HY000): Lost connection to MySQL server at ‘waiting for initial comunication packet’, system error: 0” <br> <br>Have I missed a step? <br>
<blockquote>lsof -i -P | grep :3306 command returns nothing.</blockquote>That means MySQL is not running. Try starting it: <br><pre>sudo service mysql start</pre>