How to connect to MySQL visualization tool Navicat

How to connect to MySQL visualization tool Navicat

After installing Navicat

The following error may occur: Client does not support authentication protocol requested by server

At this time, enter mysql -u root -p in the mysql bin file directory and enter the password, enter the mysql terminal, and enter the command in the terminal:

alter user 'root'@'localhost' identified with mysql_native_password by ''

Add your MySQL password after the single quotes.

Then reconnect.

Registration code: NAVHWK6ADMVKDKW3

Modify the mysql usage permissions to anyone in the LAN.

mysql> use mysql;
mysql> update user set host = '%' where user = 'root';
mysql> select host, user from user;
mysql> flush privileges; 

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed explanation of the binlog log analysis tool for monitoring MySQL: Canal
  • 5 MySQL GUI tools recommended to help you with database management
  • Detailed explanation of MySQL monitoring tool mysql-monitor
  • A detailed introduction to the construction and use of the tool Anemometer graphically displays MySQL slow logs
  • How to use MySQL stress testing tools
  • Pycharm tool failed to connect to MySQL database
  • How to quickly repair corrupted MySQL database files using the myisamchk and mysqlcheck tools
  • Analysis of Mysql data migration methods and tools
  • A quick solution to accidentally delete MySQL data (MySQL Flashback Tool)
  • KTL tool realizes the method of synchronizing data from MySQL to MySQL
  • Recommend several MySQL related tools

<<:  How to use the markdown editor component in Vue3

>>:  Linux common commands chmod to modify file permissions 777 and 754

Recommend

uniapp project optimization methods and suggestions

Table of contents 1. Encapsulate complex page dat...

How to deploy MySQL and Redis services using Docker

Table of contents How to deploy MySQL service usi...

Mac+IDEA+Tomcat configuration steps

Table of contents 1. Download 2. Installation and...

Detailed process of installing Jenkins-2.249.3-1.1 with Docker

Table of contents 1. Install Docker 2. Pull the J...

JavaScript to implement slider verification code

This article shares the specific code of JavaScri...

The whole process of node.js using express to automatically build the project

1. Install the express library and generator Open...

How to recover accidentally deleted messages files in Linux

If there are files that are being used by a proce...

How to embed flash video format (flv, swf) files in html files

Flash file formats: .FLV and .SWF There are two ex...

Analysis of the usage of Xmeter API interface testing tool

XMeter API provides a one-stop online interface t...

Mysql join query syntax and examples

Connection query: It is the result of connecting ...

How to deploy nodejs service using Dockerfile

Initialize Dockerfile Assuming our project is nam...

Vue uses canvas to realize image compression upload

This article shares the specific code of Vue usin...

JS realizes video barrage effect

Use ES6 modular development and observer mode to ...

Linux Disk Quota Management Graphical Example

Disk quota is the storage limit of a specified di...