虚拟机中MySQL连接问题:Lost connection to MySQL server at 'reading initial communication packet, system e
Posted dreamingodd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚拟机中MySQL连接问题:Lost connection to MySQL server at 'reading initial communication packet, system e相关的知识,希望对你有一定的参考价值。
环境:在VirtualBox中安装了Ubuntu虚拟机,网络使用了NAT模式,开启了端口转发。
局域网内其他计算机访问虚拟机中的mysql Server出现两个问题:
Lost connection to MySQL server at \'reading initial communication packet, system error: 0
以及
host is not allowed to connect mysql
1.解决Lost connection to MySQL server at \'reading initial communication packet, system error: 0
修改/etc/mysql/my.cnf
注释#bind-address = 127.0.0.1
在[mysqld]中加入skip-name-resolve
2.解决host is not allowed to connect mysql
进入mysql库:
grant all privileges on *.* to \'root\'@\'%\' identified by \'YourPassword\' with grant option;
以上是关于虚拟机中MySQL连接问题:Lost connection to MySQL server at 'reading initial communication packet, system e的主要内容,如果未能解决你的问题,请参考以下文章
在windows中使用Navicat连接Linux虚拟机中的mysql数据库
window系统下的pycharm对虚拟机中的Ubuntu系统操作MySQL数据库
navicat连接虚拟机中mysql"Access denied for user'root'@'IP地址'"问题
win7系统本地怎么连接Oracle VM VirtualBox虚拟机中docker容器中的ubuntu镜像中的mysql