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

What is flex and a detailed tutorial on flex layout syntax

Flex Layout Flex is the abbreviation of Flexible ...

vmware virtual machine ubuntu18.04 installation tutorial

Installation Steps 1. Create a virtual machine 2....

Tutorial on installing phpMyAdmin under Linux centos7

yum install httpd php mariadb-server –y Record so...

Detailed explanation of galera-cluster deployment in cluster mode of MySQL

Table of contents 1: Introduction to galera-clust...

What you need to know about creating MySQL indexes

Table of contents Preface: 1. Create index method...

Detailed installation tutorial for MySQL zip archive version (5.7.19)

1. Download the zip archive version from the offi...

A more elegant error handling method in JavaScript async await

Table of contents background Why error handling? ...

CSS realizes the layout method of fixed left and adaptive right

1. Floating layout 1. Let the fixed width div flo...

Tutorial on how to connect and use MySQL 8.0 in IDEA's Maven project

First, let's take a look at my basic developm...

Detailed explanation of non-parent-child component value transfer in Vue3

Table of contents App.vue sub1.vue sub2.vue Summa...

One-click installation of MySQL 5.7 and password policy modification method

1. One-click installation of Mysql script [root@u...

How to handle images in Vue forms

question: I have a form in Vue for uploading blog...

The process of installing MySQL 8.0.26 on CentOS7

1. First, download the corresponding database fro...

Analyze the difference between computed and watch in Vue

Table of contents 1. Introduction to computed 1.1...

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...