Navicat connection MySQL error description analysis

Navicat connection MySQL error description analysis

Local connection error description using Navicat

2013-Lost connection to MySQL server at 'reading initial communication packet', system error:0 "Internal error/check (Not system error)"

Error description

Check

Solution

cd /etc/mysql/mysql.conf.d/
sudo vim mysqld.cnf

Annotate the red box content

Notes

Restart the MySQL service and test the connection again

Connection successful
Check


environment

Virtual Machine Version

insert image description here

MySQL version

insert image description here

Preliminary preparation

Check MySQL running status

sudo systemctl mysql status

Startup Status
If it is not running, start the MySQL service using the sudo systemctl start mysql command

Change root password

After installing MySQL, the root password is empty by default. Change the root user password

mysqladmin -u root password "yourNewPassword";

Enter the MySQL interactive environment

sudo mysql -u root -p
# then enter your password 

Enter interactive

View All Libraries

show databases; 

show databases

Switch Library

use databaseName; 

insert image description here

New User Related

create

create user 'userName'@'%' identified by 'yourPassword';
# 'userName'@'%' @ The '%' after is the host configuration 

Create a new user

Check

You can see that no permissions are assigned

insert image description here

Assign permissions

grant all privileges on *.* to 'userName'@'%' identified by 'yourPassword';

Assign all permissions on all tables in all libraries to this user

insert image description here

flush privileges; 

flush

View this user again

Assigned permissions

The above is the detailed solution to the error when Navicat connects to MySQL. For more information about the error when Navicat connects to MySQL, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Solve the problem of Navicat for MySQL reporting 2005 error when connecting to MySQL
  • Common errors and solutions for connecting Navicat to virtual machine MySQL
  • Navicat connects to MySQL8.0.11 and an error 2059 occurs
  • When Navicat connects to MySQL, it reports 10060, 1045 errors and the location of my.ini
  • Solve the 1251 error when establishing a connection between mysql and navicat
  • Solve the 3680 error when creating a new database in Navicat on Mac

<<:  Detailed explanation of the use of base tag in HTML

>>:  Example of how to implement underline effects using Css and JS

Recommend

Start a local Kubernetes environment using kind and Docker

introduce Have you ever spent a whole day trying ...

How to create a virtual environment using virtualenv under Windows (two ways)

Operating system: windowns10_x64 Python version: ...

5 Ways to Clear or Delete Large File Contents in Linux

Sometimes, while working with files in the Linux ...

Detailed explanation of mysql scheduled tasks (event events)

1. Brief introduction of the event An event is a ...

Several common methods for passing additional parameters when submitting a form

When submitting a form, you may encounter situatio...

Summary of Linux vi command knowledge points and usage

Detailed explanation of Linux vi command The vi e...

How to fix the four sides of the table to scroll up, down, left and right

question: When I was doing project statistics rec...

Solve the problem of Mac Docker x509 certificate

question Recently I needed to log in to a private...

How to change the root password in a container using Docker

1. Use the following command to set the ssh passw...

Detailed explanation of the usage of 5 different values ​​of CSS position

The position property The position property speci...

Implementation of MySQL5.7 mysqldump backup and recovery

MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...

How to make your JavaScript functions more elegant

Table of contents Object parameters using destruc...

Analysis of statement execution order of sql and MySQL

I encountered a problem today: Can I use the as a...