A customer called with an emergency issue: A server that normally
runs many MySQL instances wouldn’t start them up. Not only would
it not start all of them, it wouldn’t even start the first one.
The multiple instances were started through the mysql_multi init
script. Perhaps you already know what was wrong!
It turns out that this server’s /etc/init.d/mysql_multi wouldn’t
start unless it found the text “mysqld_multi” in the /etc/my.cnf
file. Not a [mysqld_multi] config file section, but the text
string “mysqld_multi”. It was using this text as a proxy for “I
found a [mysqld_multi] configuration section.” This was a rather
brittle test, as you can imagine.
After reading the source, I determined that the my.cnf file was
fine and the configuration should not be changed, and I could not
understand what had changed since it was previously working.
Perhaps an automated upgrade or a similar change to the system
had …
[Read more]