【现象】
由于要用 navicat 连接数据库,navicat 报错提示没有权限访问,故要在 MySQL 中创建这个账户并赋予远程访问权限。
旧版本的 MySQL 可以通过一行命令给用户添加上访问权限。 但在本次操作中报错:
grant 权限列表 on 数据库 to '用户名'@'访问主机' identified by '密码'; 时会出现"......near 'identified by '密码'' at line 1"错误
【原因】
由于 MySQL8.0 以上将创建账户和赋予权限分开了,需要用不同的语句创建账号,赋予远程权限
【处理方式】
# 1. 先进入mysql数据库
use mysql;
# 2. 在user表中创建账号
create user 'root'@'%' identified by 'root.123';
# 3. 给创建好的账号赋予远程权限
grant all privileges on *.* to 'root'@'10.150.32.100' with grant option;
# 允许所有 ip 远程访问(危险!)
grant all privileges on *.* to 'root'@'%' with grant option;
# 4. 刷新数据库
FLUSH PRIVILEGES;
# 5. 查看数据库中的用户权限表
select User,authentication_string,Host from user;