In libera:#mysql
a user has been running MySQL in a
docker container with mysql:latest
. This container
got automatically upgraded to MySQL 9.0.0, an innovation release.
Part of the 9.0 release is the removal of the
mysql_native_password
plugin, which has been
deprecated since 8.0. The user now can no longer login to their
database. They have no backup and no replica.
We recreate the problem from scratch, using docker, and then recover the instance.
On my system, I am using LVM2, and I am routinely using the XFS
file system. I am creating a 10 GB sized test filesystem, which I
mount to /a
. In that, we create a mysql
and a conf
directory.
The official …
[Read more]