刚解决了一个小问题,在此记录一下。
测试服务器上的mysql,当我在本地使用工具去连接它的时候,报错:Lost
connection to MySQL server at 'reading initial communication packet'
我首先想到的是要在服务器上给所有IP授权,于是在服务器上使用命令登录mysql,并执行:
grant all privileges on dbname.* to 'username'@'%' identified by 'passed'
其中,%号表示允许所以IP访问。
到本地试着连接一下还是不行。
然后我继续做其它尝试的时候,在错误提示了看到一句话:请确定mysql中是否去掉了skip-networking的设置。我打开mysql的配置文件:
vi /etc/mysql/my.cnf
注意到下面的内容:
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1# Instead of skip-networking the default is now to listen only on
原来是这里做了绑定,我把bind-address注释起来。就可以了!
分享到:
相关推荐
Lost connection to MySQL server at ‘reading initial communication packet’ 错误解决 上次解决了这个问题,今天又碰到,突然失忆,又做了一番无用功后终于搞定,这次一定要记录下来,免得下次又浪费时间 1、...
代码如下:Lost connection to MySQL server at ‘reading initial communication packet’, system error: 0 很明显这是连接初始化阶段就丢失了连接的错误。 google半天大多是说的注释掉配置文件中 bind-address = ...
使用Navicat远程服务器mysql数据库时报错误:2013-Lost connection to MYSQL server at ‘waitting for initial communication packet’,system error:0 操作流程一、检验Mysql数据库是否安装成功二、对Mysql的配置...
远程连接MySQL所遇到的问题以及解决问题方法 在 Linux 系统中,使用 YUM 命令安装 MySQL 后,需要进行一系列的配置以便能够远程连接 MySQL 数据库。以下是解决不能进行远程连接 MySQL 数据库的问题的方法,这些方法...
在使用MySQL数据库时,有时会遇到SQL Error (2013)这样的连接错误,提示"Lost connection to MySQL server at 'waiting for initial communication packet', system error: 0"。这个错误通常意味着客户端在尝试与...
如果已经设置Mysql/Bin环境变量,直接在CMD里输入命令,如果没有设置Mysql环境变量,去Mysql安装目录的Bin文件夹里运行 F:\AppServ\MySQL\bin\mysql.exe -u root -p 其中root是用户名,然后就可以进入Mysql命令行...
当通过 TCP/IP 连接 MySQL 远程主机时,出现 ERROR 2013 (HY000): Lost connection to MySQL server at ‘reading initial communication packet’, system error: 104 。 如果是在linux shell命令行中直接打 mysql ...
mysql默认是线程不安全的, 及编程时如何解决此问题的解决方案 InnoDB Operating system error number 9. ...Lost connection to MySQL server at 'handshake- reading initial communication packet'
- **解决“reading initial communication packet”问题**: - 找到my.cnf文件:`find / -name 'my.cnf'`。 - 编辑my.cnf文件:`vim /etc/my.cnf`。 - 添加`skip-name-resolve`参数。 - **开启3306端口**: - ...
- **Installation Process**: Step-by-step guide through the installation process, from initial boot-up to configuring settings during setup. - **Post-Installation Setup**: Guidance on essential post-...