How to properly shutdown MySQL before any maintenance activity
We might have different scenarios once we need to stop MySQL
service before performing either server or database activity like
patching/upgrade.
Before performing such activity, we need to make sure that we
stop MySQL service properly to avoid any unforeseen crashes once
our maintenance activity complete and MySQL service is
started.
Here I would like to share the below steps which should be
performed and take care to properly stop MySQL
service.
Step 1: Ensure we don't have any long-running queries. Manually verify by checking the processlist. show …
[Read more]