I have installed mysql on my Mac with homebrew
brew install mysql
I would like to login to mysql as a root with no password trough auth_socket plugin.
The problem is that there is no auth_socket plugin in plugin_dir directory.
I have tried to add in my.cnf
plugin-load-add=auth_socket.so
And also mysql query:
INSTALL PLUGIN auth_socket SONAME 'auth_socket.so';
With error "image not found"
How to install auth_socket?