grant all privileges on *.* to root‘@‘localhost identified by ‘root‘ with grant option;运行的sql语法错误解决

grant all privileges on . to root’@'localhost identified by ‘root’ with grant option;运行的sql语法错误解决

问题截图:
在这里插入图片描述
问题的主要解决是是云服务上的mysql能够远程连接,这个错误试过很多种sql语句都是报错,自己手动也打了
换一种方式实现云服务山的mysql的远程连接:

1.在云主机上连接mysql     
mysql -uroot -p         #根据提示输入密码
2.依次执行以下sql命令
use mysql               #打开 mysql 数据库
将host设置为%表示任何ip都能连接mysql,当然也可指定为某个特定ip
update user set host='%' where user='root' and host='localhost';
flush privileges;        #刷新权限表,使配置生效

grant all privileges on *.* to root‘@‘localhost identified by ‘root‘ with grant option;运行的sql语法错误解决_第1张图片
通过Navicat Premium进行连接数据库进行操作
grant all privileges on *.* to root‘@‘localhost identified by ‘root‘ with grant option;运行的sql语法错误解决_第2张图片

你可能感兴趣的:(mysql)