时间:2021-07-01 10:21:17 帮助过:29人阅读
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; 命令刷新权限即可。
以上就是mysql不可以远程连接怎么办的详细内容,更多请关注gxlcms其它相关文章!