1.链接数据库,输入密码。
mysql -u用户名 -p
2.使用mysql。
use mysql;
3.查看用户。
select user,host from mysql.user;
4.修改密码
update user set password=password('密码') where user = '用户名' and host= '%';
5.刷新
FLUSH PRIVILEGES;
6.重启数据库
远程登录授权
1.链接数据库,输入密码。
mysql -u用户名 -p
2.使用mysql。
use mysql;
3.查看用户。
select user,host from mysql.user;
4.远程登录授权
grant all privileges on *.* to '用户名'@'%' identified by '密码';
5.刷新
FLUSH PRIVILEGES;
6.重启数据库
评论区