mysql不可以远程连接怎么办

  • 来源:网络
  • 更新日期:2020-09-02

摘要:mysql不可以远程连接的解决方法:1、打开命令提示符,登录mysql;2、执行【grant all privileges on *.* to root@"ip" identified by "密码"】命令赋予远程访问权限;3、刷新权限。

mysql不可以远程连接的解决方法:1、打开命令提示符,登录mysql;2、执行【grant all privileges on *.* to root@"ip" identified by "密码"】命令赋予远程访问权限;3、刷新权限。

解决方法:

(视频教程:mysql视频教程)

首先打开命令提示符,执行mysql -u root -p命令;

然后执行grant all privileges on *.* to root@"xxx.xxx.xxx.xxx" identified by "密码";命令给IP-xxx.xxx.xxx.xxx赋予所有的权限,包括远程访问权限。

(推荐教程:mysql教程)

最后执行 flush privileges; 命令刷新权限即可。