本地使用Navicat连接 错误描述
2013-Lost connection to MySQL server at ‘reading initial communication packet', system error:0 “Internal error/check (Not system error)”
解决方案
cd /etc/mysql/mysql.conf.d/
sudo vim mysqld.cnf
注释红框内容
重启MySQL服务 再次测试连接
环境
虚拟机版本
MySQL版本
前期准备
查看MySQL运行状态
sudo systemctl mysql status
如果未运行,使用sudo systemctl start mysql 命令启动mysql服务
修改root密码
安装完MySQL后root密码默认为空,修改root用户密码
mysqladmin -u root password "yourNewPassword";
进入MySQL交互式环境
sudo mysql -u root -p
# then input your password
查看所有库
show databases;
切换库
use databaseName;
新建用户相关
创建
create user 'userName'@'%' identified by 'yourPassword';
# 'userName'@'%' @后面的'%'是host的配置
查看
可以看到没有分配任何权限
分配权限
grant all privileges on *.* to 'userName'@'%' identified by 'yourPassword';
将对所有库的所有表的所有权限都分配给了这个用户
flush privileges;
再次查看该用户
以上就是Navicat连接MySQL出错解决的详细内容,更多关于Navicat连接MySQL错误的资料请关注编程网其它相关文章!