欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

解决mysql客户端不能用IP地址访问的有关问题

程序员文章站 2022-05-09 08:33:06
...

解决mysql客户端不能用IP地址访问的问题 use mysql; select host,user from user; use mysql; update user set host = '%' where user = 'root'; select host, user from user; FLUSH PRIVILEGES;

解决mysql客户端不能用IP地址访问的问题

use mysql;
select host,user from user;
use mysql;
update user set host = '%' where user = 'root';
select host, user from user;
FLUSH PRIVILEGES;