With MariaDB by default the root user has the plugin unix_socket enabled:
SELECT Plugin FROM user WHERE User = "root";
+-------------+
| Plugin |
+-------------+
| unix_socket |
+-------------+
From the documentation:
This is useful. However we also run PHPMyAdmin which requires the root username and password entering to connect to MariaDB, and this login is failing because the root user has the unix_socket plugin specified.
If we remove the unix_socket from the root user, PHPMyAdmin then works with a regular username/password combination, but we also have to enter the username and password each time when connecting to MariaDB from the command line.
Is there a solution where both can be used in-conjunction with each other?
For security we don’t really want to store the root password in plaintext in a ~/.my.cnf file.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @DigitalCarrot
Why don’t you create two
root
users? As long as theHost
+User
is unique, then it’s allowed.But from a security point, I would would say
/root/.my.cnf
is a clear winner compared to phpMyAdmin. If you look at how many security flaws there has been in PMA, PHP, Apache and MySQL combined versus thechmod
/chown
commands of the Unix-world, then you wouldn’t doubt how it works.I’m guessing you’re running PMA over HTTPS, and storing all company passwords in a password manager - if not, then that’s a much bigger security problem.