This is driving my crazy. I have a #mariadb running on an external host.
When I use the linux cli mariadb-client I can connect just fine with
mysql -D database -u user -p'pwd' -h host
When I try to do the same thing with a sql client like within PhpStorm I get the error message that the user "{user}@{myipv6-address}" does not have the permission. Which is not surprising as the user does not exists.
How can I convince #PhpStorm to only use user instead of the above combination?

