dbeaver连接mysql提示以下错误
null, message from server: "Host '172.23.0.1' is not allowed to connect to this MySQL server"
解决步骤:
第一步:
use mysql;
第二步:
update user set host = '%' where user = 'root';
第三步:
alter user 'root'@'%' identified with mysql_native_password by '123456';
第四步:
flush privileges;