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
Container scripts generate /etc/my.cnf.d/base.cnf from /usr/share/container-scripts/mysql/pre-init/my-base.cnf.template, which includes:
plugin-dir = ${MYSQL_PREFIX}/lib64/mysql/plugin
However, plugins are installed by the package in /usr/lib64/mariadb/plugin, so plugins cannot be found by MariaDB. I believe this should be changed to:
plugin-dir = ${MYSQL_PREFIX}/lib64/mariadb/plugin
The text was updated successfully, but these errors were encountered:
Container scripts generate
/etc/my.cnf.d/base.cnf
from/usr/share/container-scripts/mysql/pre-init/my-base.cnf.template
, which includes:However, plugins are installed by the package in
/usr/lib64/mariadb/plugin
, so plugins cannot be found by MariaDB. I believe this should be changed to:The text was updated successfully, but these errors were encountered: