1.Mysql允许远程连接访问

打开编辑器,输入以下sql语句

use mysql;
select  * from  user;
update user set Host = '%' where Host = 'localhost' and User='root';

1.Mysql允许远程连接访问_第1张图片

你可能感兴趣的:(数据库,mysql,数据库)