Analysis updated 2026-07-05 · repo last pushed 2013-08-18
Spin up multiple identical MySQL database servers on cloud platforms like Amazon EC2.
Standardize MySQL security settings and passwords across all servers in an organization.
Install just the MySQL client on application servers that need to connect to a remote database.
Set up a local MySQL development environment on Mac OS X.
| moritzheiber/mysql | joshuakgoldberg/mastodon | snatchev/deliver | |
|---|---|---|---|
| Language | Ruby | Ruby | Ruby |
| Last pushed | 2013-08-18 | 2024-05-11 | 2015-11-24 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | moderate | hard | moderate |
| Complexity | 3/5 | 4/5 | 2/5 |
| Audience | ops devops | ops devops | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires Chef version 0.10.10 or higher and depends on a separate OpenSSL cookbook for secure password generation.
This project is a "cookbook" for a tool called Chef, which automates the setup and configuration of servers. Specifically, it installs and configures MySQL, which is a popular database system used to store information for websites and applications. Instead of manually logging into each server to install MySQL, enter passwords, and tweak settings, an engineer can use this cookbook to handle all of that automatically and consistently across many machines. The way it works is fairly straightforward. An engineer adds this cookbook to their Chef "run list," which is essentially a checklist of tasks Chef should perform on a server. They can choose to install just the MySQL client (the part that lets a server connect to a database elsewhere) or the full MySQL server (the actual database engine). The cookbook then handles downloading the right packages, generating secure passwords using OpenSSL, writing the configuration files, and setting up user permissions. This would be used by operations teams or developers who manage their own server infrastructure. For example, if a startup is launching a new web app and needs to spin up five identical database servers on Amazon's EC2 cloud platform, they could use this cookbook to ensure every server gets MySQL installed the same way, with the same security settings and passwords. It also has special logic for EC2 that places the database files on the right kind of storage. One notable thing about the project is how much it lets you customize without touching code. It exposes dozens of settings, like which network address MySQL listens on, what port it uses, whether remote root access is allowed, and whether the default test database should be deleted. These are defined as simple key-value attributes that can be overridden per server or per environment. The cookbook supports a wide range of systems, including Ubuntu, Debian, CentOS, Red Hat, Fedora, and even Mac OS X for local development. It is worth noting that it relies on Chef version 0.10.10 or higher and requires an additional OpenSSL cookbook to handle secure password generation.
A Chef cookbook that automatically installs and configures MySQL databases on servers. Instead of manually setting up each database server, you use this to ensure every machine gets MySQL configured consistently and securely.
Mainly Ruby. The stack also includes Chef, Ruby, OpenSSL.
Dormant — no commits in 2+ years (last push 2013-08-18).
The explanation does not mention a license, so the terms of use are unknown.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly ops devops.
This repo across BitVibe Labs
Verify against the repo before relying on details.