cd /usr/share/mysql
mysql -uroot -p 提示输入密码
Welcome to the MySQL monitor. 表示登陆成功。
经过测试,第一种方法是成功的,
第二种方法适用于:ubuntu java
1\授权法:
use mysql;
grant all privileges on *.* to [email protected]‘%‘ identified by "leo";
以leo用户在任何地方都可以访问; ()
2\该表法:
可以实现以root用户在任何地方访问数据库
update user set host = ‘%‘ where user = ‘root‘;
这样就可以了
再次连接出现 1045
时间: 2024-10-27 16:46:38