本地使用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错误的资料请关注www.887551.com其它相关文章!