vote up 0 vote down star

I am thinking of writing a small MySQL provisioning for my organization's internal use. We are feeling the need as both Developers and Quality Assurance people spend a significant time in preparing databases before they can do their work.

So as a first step, I am searching for an existing open-source tool that can do basic MySQL Server provisioning. I am looking for features like:

  1. Create new instances of MySQL and return parameters like port the new instance is listening on. Edit: Why instances instead of databases? See comment below for my reason.
  2. Accept parameters specifying existing data-folder
  3. List existing running instances with some information about who started it, how long its been running etc.
  4. Stop running instances on-demand and as-scheduled
flag

56% accept rate
Why entire new instances of MySQL? Why not user+database in the existing instance? – ceejayoz May 26 at 16:12
Perhaps the reason is already stale but I failed to find a solution [almost a year and a half ago] to ever expanding ibdata* files. These files won't shrink even if you drop your database(s). Also cloning and attaching data-folders appears to be much faster to me than re-creating databases from mysqldump files. – Tahir Akhtar May 26 at 16:46

1 Answer

vote up 1 vote down

you've got the mysqladmin binary which comes with the distribution for free. and you've also got SQLyog which is a GUI implementation

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.