mysql数据库拒绝连接

例如:A电脑要连接B电脑的数据库

给予B电脑数据库的访问权限即可:

select host, user from user;
grant all privileges on *.* to root@'%' identified by '密码' with grant option;
flush privileges;

猜你喜欢

转载自blog.csdn.net/yy12345_6_/article/details/127489869