lando / mariadb

The Official MariaDB Lando Plugin
https://docs.lando.dev/mariadb
GNU General Public License v3.0
0 stars 6 forks source link

Warnings when performing MySQL commands on mariadb:10.6 #23

Open DanielKulbe opened 1 year ago

DanielKulbe commented 1 year ago

Steps to reproduce:

Result: I received a whole lot of: WARNING: Forcing protocol to TCP due to option specification. Please explicitly state intended protocol.

Cause: If hostname is not specified or hostname is localhost, then Unix sockets are used. In other cases (hostname is given and it's not localhost) then a TCP/IP connection through the port option is used. Note that localhost is a special value. Using 127.0.0.1 is not the same thing. The latter will connect to the mysqld server through TCP/IP.

Solution: Change the Host from localhost to 127.0.0.1.

jackfoust commented 3 months ago

Did you make this change yourself in the .lando.yml @DanielKulbe?