6
I’m testing the new version 8 of Mysql, and encountered some difficulty in releasing remote access (specifically, using the Workbench).
What I found was same question on Soen, and only one commenting with a link, but nothing enlightening.
Even so, I tried some details, but without success:
[mysqld]
default_authentication_plugin=mysql_native_password
ALTER USER 'root'@'localhost'
IDENTIFIED WITH mysql_native_password
BY 'password';
A little more in research, I found some release details for Ipv6, but there is something about Ipv4 in the Official Documentation 8.0 (link), and tried various ways:
[mysqld]
bind_address = *
[mysqld]
bind_address = 0.0.0.0
[mysqld]
bind_address = 192.168.0.0/255.255.255.0
However, so far I have not been able to make the release.
See help: https://www.variphy.com/kb/how-to-enable-connections-to-mysql-from-remote-machine
– Reginaldo Rigo
@Reginaldorigo I have tried... in various ways! rs... then I started searching specifically for Mysql 8, that’s where I found these new questions.
– rbz