docs icon indicating copy to clipboard operation
docs copied to clipboard

Installing MariaDB on Debian 10 Proposed Changes

Open GTAXL opened this issue 1 year ago • 0 comments

Link: https://www.linode.com/docs/guides/how-to-install-mariadb-on-debian-10/ The following command UPDATE user SET plugin='mysql_native_password' WHERE user='root'; no longer works. This guide needs updated for Debian 12 Bookworm. It should use

ALTER USER root@localhost IDENTIFIED VIA mysql_native_password;
SET PASSWORD = PASSWORD('foo');

instead. Also mysql_secure_installation should really be changed to mariadb-secure-installation, even though they are symlinked.

GTAXL avatar Feb 04 '24 03:02 GTAXL