How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

Things to note

1. First, you need to create a my.ini file in the mysql installation directory with the following content:

[client]
# Set the default character set of the mysql client to default-character-set=utf8
 
[mysqld]
# Set port 3306 port = 3306
#Set the installation directory of mysql basedir=C:\\web\\mysql-8.0.11
#Set the storage directory of the MySQL database data. MySQL 8+ does not require the following configuration, the system can generate it by itself, otherwise an error may be reported # datadir=C:\\web\\sqldata
# Maximum number of connections allowed max_connections=20
# The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8
# The default storage engine that will be used when creating a new table default-storage-engine=INNODB

2. Configure MySQL environment variables

MYSQL_HOME is the decompression location of MySQL. Add %MYSQL_PATH%\bin to the path.

3. Open cmd as an administrator, cd to the bin directory of mysql, and execute, mysqld --initialize --console . After execution, a temporary database password will appear.

4. Execute the mysql installation command: mysqld install . After successful installation

5. User login: mysql -u root -p , after entering the password, an error message appears: Can't connect to MySQL server on 'localhost' (10061)

6. Restart mysql: net start mysql , and then log in again.

When using navicat to connect to the mysql database, an error will be reported because the password encryption method of mysql8.0 is different from that of the client. At this time, we need to execute the following command

1. Change password to password

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

2. Change the encryption method

ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;

3. Refresh:

FLUSH PRIVILEGES;

Summarize

This is the end of this article about the methods and precautions for installing mysql8.0.20 and connecting to navicat. For more information about installing mysql8.0.20 and connecting to navicat, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Things to note when migrating MySQL to 8.0 (summary)
  • A brief discussion on the pitfalls and solutions of the new features of MySQL 8.0 (summary)
  • How to solve various errors when using JDBC to connect to Mysql 8.0.11
  • Detailed explanation of the pitfalls of MySQL 8.0
  • Notes on matching MySql 8.0 and corresponding driver packages

<<:  Solution to the problem of repeated pop-up of Element's Message pop-up window

>>:  React realizes the whole process of page watermark effect

Recommend

Analysis of the use and principle of Docker Swarm cluster management

Swarm Cluster Management Introduction Docker Swar...

js object-oriented method to achieve drag effect

This article shares the specific code for impleme...

Let's talk about the LIMIT statement in MySQL in detail

Table of contents question Server layer and stora...

Tutorial on installing jdk1.8 on ubuntu14.04

1. Download jdk download address我下載的是jdk-8u221-li...

React mouse multi-selection function configuration method

Generally, lists have selection functions, and si...

Detailed tutorial of using stimulsoft.reports.js with vue-cli

vue-cli uses stimulsoft.reports.js (nanny-level t...

js realizes the magnifying glass function of shopping website

This article shares the specific code of js to re...

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

A brief understanding of the differences between MySQL InnoDB and MyISAM

Preface MySQL supports many types of tables (i.e....

Detailed steps for manually configuring the IP address in Linux

Table of contents 1. Enter the network card confi...

Solution to the problem of repeated triggering of functions in Vue project watch

Table of contents Problem description: Solution 1...

A mobile adaptive web page effect solves the problem of small display page

For work needs, I need to make a mobile phone adap...

How to pop up a temporary QQ dialog box to chat online without adding friends

In fact, this is very simple. We add an a tag to ...