You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In RHEL, mysql users are created with the mysql_native_password authentication plugin enabled (due to /etc/my.cnf.d/mysql-default-authentication-plugin.cnf)
Starting from mysql version 8.4, the plugin will be disabled (https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html)
This will probably break openITCOCKPIT installations under RHEL when the user mode is not changed to caching_sha2_password
To Reproduce
Steps to check the users:
mysql --defaults-file=/etc/mysql/debian.cnf
select user, host, plugin from mysql.user;
Expected behavior
Add a check to raise a warning when the mysql_native_password authentication plugin is used.
Maybe change automatically the users to use caching_sha2_password
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';
ALTER USER 'openitcockpit'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';
Versions
openITCOCKPIT Server Version: 4.8.x
RHEL
The text was updated successfully, but these errors were encountered:
Describe the bug
In RHEL, mysql users are created with the
mysql_native_password
authentication plugin enabled (due to /etc/my.cnf.d/mysql-default-authentication-plugin.cnf)Starting from mysql version 8.4, the plugin will be disabled (https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html)
This will probably break openITCOCKPIT installations under RHEL when the user mode is not changed to
caching_sha2_password
To Reproduce
Steps to check the users:
Expected behavior
Add a check to raise a warning when the
mysql_native_password
authentication plugin is used.Maybe change automatically the users to use
caching_sha2_password
Versions
The text was updated successfully, but these errors were encountered: