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!
Excellent reference. If possible could you create or point to a tutorial that teaches how to deploy the app you have just created with a mysql db to a remote server. I am using Site5 as host and they use CentOS. Thank you.
I don’t like to use root account even in a small virtual machine, you may get bad habit. :) It is not that hard to create a dedicated user with wildcard access to production, development and test environments:
create user 'site'@'localhost' identified by 'password';
grant all privileges on `site\_%`.* to 'site'@'localhost';
or if you connect remotely:
create user 'site'@'%' identified by 'password';
grant all privileges on `site\_%`.* to 'site'@'%';