Cyrus Murder Failure Modes¶
This page is for documenting what happens when a part of the Cyrus Murder fails, how to recover from failures, and commons DOs and DON'Ts of Murder operation.
What happens when the Murder mupdate master is available again?¶
Frontends will automatically reconnect to the mupdate master after 20 seconds (see mupdate_retry_delay in imapd.conf(5)) and synchronize.
Backends will NOT automatically sync any changes to the mupdate master. If any mailbox changes occurred on a backend (a distinct possibility if IMAP clients were still connected), you will need to manually synchronize the mailbox list from the backend to the mupdate master. As the cyrus user, run ctl_mboxlist -mw
on each backend to see the list of changes that would be made. If the list looks correct, then run ctl_mboxlist -m
to actually push those changes to the mupdate master.
What if my mupdate master blows up and I have to recover it?¶
It is either easy, or hard depending on your setup.
Easy recovery¶
You can restore the murder master mailbox list from your text backup (created with ctl_mboxlist -d
)
Don't have a backup? Well it is still easy if you have a frontend. The mailboxes.db on your frontend and your murdermaster are in the same format.
Stop Cyrus on a frontend
Stop Cyrus on your murder master
Copy mailboxes.db from frontend to murder master
Start everything backup
Use ctl_mboxlist -m on each backend to update the murder master with any missing changes.
If you are using skiplist for your mailboxes.db then you can just copy the file.
Hard recovery¶
It's not currently possible to recover the master's mailboxes.db with a dump from ctl_mboxlist -d
. The mailboxes.db recovered on the master with ctl_mboxlist -u
won't have the "remote" flag set.
Stop Cyrus on your frontends.
Delete the mailboxes.db on the frontends and the mupdate master.
Use
ctl_mboxlist -m
on each backend to populate the mailboxes.db on the mupdate master.Start Cyrus on the frontends.