当前mysql只能允许localhost连接。
只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
use mysql;
update user set host = '%' where user = 'root';
select host, user from user;
flush privileges;
2022-12-30 21:18:52
当前mysql只能允许localhost连接。
只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
use mysql;
update user set host = '%' where user = 'root';
select host, user from user;
flush privileges;