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

How to start tomcat using jsvc (run as a normal user)

Introduction to jsvc In production, Tomcat should...

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

How to use the Linux nl command

1. Command Introduction nl (Number of Lines) adds...

HTML CSS3 does not stretch the image display effect

1. Use the transform attribute to display the ima...

Cross-domain issues in front-end and back-end separation of Vue+SpringBoot

In the front-end and back-end separation developm...

InnoDB type MySql restore table structure and data

Prerequisite: Save the .frm and .ibd files that n...

The process of building and configuring the Git environment in Docker

Configure Git environment in Docker At work, I en...

react-beautiful-dnd implements component drag and drop function

Table of contents 1. Installation 2.APi 3. react-...

A simple method to implement scheduled backup of MySQL database in Linux

Here are the detailed steps: 1. Check the disk sp...

How to use html table (to show the visual effect of web page)

We know that when using HTML on NetEase Blog, we ...

HTML unordered list bullet points using images CSS writing

Create an HTML page with an unordered list of at l...

Ubuntu installs multiple versions of CUDA and switches at any time

I will not introduce what CUDA is, but will direc...

Generate OpenSSL certificates in Linux environment

1. Environment: CentOS7, Openssl1.1.1k. 2. Concep...

Docker image optimization (from 1.16GB to 22.4MB)

Table of contents The first step of optimization:...