From 5a016312f695b61ad1320ca1b52506afb6864a9f Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Mon, 23 Jan 2023 14:53:39 -0500 Subject: [PATCH] switch MySQL 8 to use native password to avoid playbook incompatibility --- salt/mysql/etc/my.cnf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/salt/mysql/etc/my.cnf b/salt/mysql/etc/my.cnf index e37f690dc..243cc4c51 100644 --- a/salt/mysql/etc/my.cnf +++ b/salt/mysql/etc/my.cnf @@ -29,3 +29,6 @@ symbolic-links=0 log-error=/var/log/mysql/mysqld.log pid-file=/var/run/mysqld/mysqld.pid + +# Switch back to the native password module so that playbook can connect +default_authentication_plugin=mysql_native_password \ No newline at end of file