标签:alter ati grant 开启 bsp native 远程 mysql 密码
1、 进入数据
mysql -u root -p ‘原来的密码’ //进入数据库中
2、 切换数据库
use mysql;
3、使用以下命令开启root用户远程访问权限:
CREATE USER ‘root‘@‘%‘ IDENTIFIED BY ‘你的密码‘;
GRANT ALL ON *.* TO ‘root‘@‘%‘;
ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘你的密码‘;
4、 刷新权限
FLUSH PRIVILEGES;
标签:alter ati grant 开启 bsp native 远程 mysql 密码
原文地址:https://www.cnblogs.com/rocken/p/14885485.html