首页 > 代码库 > 1130 -host ‘localhost‘ is not allowed to connect t

1130 -host ‘localhost‘ is not allowed to connect t

 

cd /usr/share/mysql

mysql -uroot -p  提示输入密码

Welcome to the MySQL monitor.   表示登陆成功。

经过测试,第一种方法是成功的,

第二种方法适用于:ubuntu java

1\授权法:

use mysql;

grant all privileges  on *.* to leo@‘%‘ identified by "leo";

以leo用户在任何地方都可以访问;    ()

2\该表法:

可以实现以root用户在任何地方访问数据库

update user set host = ‘%‘ where user = ‘root‘;

这样就可以了

再次连接出现 1045

 

 

1130 -host ‘localhost‘ is not allowed to connect t