改表
首先登陆你进入需要共享mysql数据库的电脑,更改'mysql'数据库中的'user'表里的'host'项,从'localhost'改为'%'或者另加一个用户'%'后面内容和'localhost'项一样,要执行如下两行命令给MySQL开启远程连接的功能:
grant all privileges on *.* to 'root'@"%" identified by 'abc' with grant option;
flush privileges;
以及:
mysql> update user set plugin="mysql_native_password";
mysql> flush privileges;
mysql> quit;
网友评论