I have mariadb installed and running.
I can connect to it with this:
mysql -u dev -p
or
mysql -h localhost -u dev -p
but I can't connect to it using
mysql -h 127.0.0.1 -u dev -p
It asks me for my pwd, which I enter. but after that it just hangs.
I need to be able to connect with 127.0.0.1
because I am using jdbc and I want to make connection using that.