这是因为
mysql数据库只允许自身所在的本机器连接,不允许其他机器远程连接。
如果是root用户,执行sql语句:
- use mysql;
-
- select host from user where user='root';
如果是localhost ,那么就是只允许本地连接
- update user set host = '%' where user ='root';
- flush privileges;
这样就可以了
赞
踩
这是因为
mysql数据库只允许自身所在的本机器连接,不允许其他机器远程连接。
如果是root用户,执行sql语句:
- use mysql;
-
- select host from user where user='root';
如果是localhost ,那么就是只允许本地连接
- update user set host = '%' where user ='root';
- flush privileges;
这样就可以了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。