I have a couple of databases (say 5 for calculation purpose) and am thinking of using managed MySQL database. Thing is, I don’t want to spend $15 x 5 = $75 per month.
The pricing - https://www.digitalocean.com/pricing/managed-databases - is $15 per month per database or $15 per month for 10GB space of any number of databases ?
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 there,
It is $15 per database cluster. On a cluster, you can have as many separate databases as you wish.
You can create the databases with the
CREATE DATABASE db_name
statement.Hope that this helps!
Best,
Bobby