标签:style http color os ar java for sp 数据
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
标签:style http color os ar java for sp 数据
原文地址:http://my.oschina.net/u/587105/blog/339296