1、将本地的mysql数据库设置为允许远程访问
use mysql;
mysql>grant all privileges on . to 'root'@'%' with grant option;
mysql>update user set password=password('密码') where user='root';
mysql>flush privileges;
mysql>exit
重启mysql服务 ,自此可以ip访问本地数据库
如果其他计算机仍然无法访问。就在winds防火墙设置访问规则,允许访问3306端口。
https://www.jianshu.com/p/df63d2fbf3b5
网友评论