MySQL 8.0.17 winx64 (with navicat) manual configuration version installation tutorial diagram

MySQL 8.0.17 winx64 (with navicat) manual configuration version installation tutorial diagram

1. Download address:

mysql-8.0.17-winx64

Download and unzip

2. Open the file

Create a my.ini file in the mysql folder and copy the contents into the file;

[client]
#The client port number is 3306
port = 3306
socket =/data/3306/mysql.sock
# Set the default character set of the mysql client to default-character-set=utf8

[mysqld]
# Set port 3306 port = 3306
user = root
socket =/data/3306/mysql.sock
# Set the installation directory of mysql basedir=D:\\appinstall\mysql-8.0.17-winx64
# Set the storage directory for 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=D:\\appinstall\mysql-8.0.17-winx64\\data
# 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

Note: When saving the file, open it with Notepad => File => Save As => Save in ANSI format

3. Configure environment variables and add the bin folder path to the path: D:\appinstall\mysql-8.0.17-winx64\bin

4. Installation command operation

1. Delete the data folder;

2. In the bin directory of the CMD with administrator privileges, remove the incorrectly installed mysqld service;

DOS command operation: mysqld -remove MySQL

3. Execute in the bin directory of CMD

DOS command operation: mysqld --initialize-insecure

You will find that the program automatically creates a data folder and related files in the root directory of mysql

4. Execute in the bin directory

DOS command operation: mysqld -install

Service successfully installed.

5. Execute net start mysql in the bin directory to start the mysql service

MySQL service is starting..

The MySQL service has been started successfully.

6.dos command operation:

mysql -u root -p

There is no password at this moment, just press enter to enter

Then enter the command as shown below;

use mysql;
update user set password=password("12345") where user="root"; #Change the password of the user named root to 12345 

If there is no error after executing the above, it means that you have successfully changed the password of the user name root to 12345. If there is an error: as shown below

If the above error occurs, it means the statement is wrong. Execute:

update mysql.user set authentication_string=password('12345') where user='root';

If the error message still appears, it is recommended to install navicat, then open it, create a connection, and log in without a password.

Then directly change it to the password you want, ok;

5. Navicat download and installation and registration code issues

Download address: http://xiazai.jb51.net/201908/yuanma/Navicat_Premium_jb51.rar

Decoding steps reprint address: https://www.jianshu.com/p/5f693b4c9468

Follow the last step of the above decoding steps to generate the decoding with the 5.0 version of the registration machine. If it fails, please use the 4.9 version of the decoding.

Finish!

Summarize

The above is the installation tutorial of MySQL 8.0.17 WinX64 (with Navicat) manual configuration version introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • When Navicat Premium connects to the database, the error message appears: 2003 Can't connect to MySQL server on''localhost''(10061)
  • Solution to the problem that Navicat cannot remotely connect to MySql server
  • After installing Navicat in MySQL, 2059 appears, Authentication plugin and local link virtual machine docker, remote link server
  • MySQL 8.0.20 Window10 free installation version configuration and Navicat management tutorial graphic detailed explanation
  • How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to
  • How to solve the 10060 unknow error when Navicat remotely connects to MySQL
  • Solve the problem that Navicat cannot connect to MySQL on the Linux server
  • Navicat remote connection to MySQL implementation steps analysis
  • Solution to Navicat Premier remote connection to MySQL error 10038

<<:  Tutorial on installing PHP on centos via yum

>>:  jQuery implements navigation bar effect with expansion animation

Recommend

Sample code for implementing radar chart with vue+antv

1. Download Dependency npm install @antv/data-set...

Detailed explanation of 7 SSH command usages in Linux that you don’t know

A system administrator may manage multiple server...

Split and merge tables in HTML (colspan, rowspan)

The code demonstrates horizontal merging: <!DO...

VMware installation of Ubuntu 20.04 operating system tutorial diagram

Memo: Just experience it. Record: NO.209 This exa...

Detailed tutorial for installing influxdb in docker (performance test)

1. Prerequisites 1. The project has been deployed...

How to avoid the trap of URL time zone in MySQL

Preface Recently, when using MySQL 6.0.x or highe...

How to use html2canvas to convert HTML code into images

Convert code to image using html2canvas is a very...

Detailed description of component-based front-end development process

Background <br />Students who work on the fr...

Use js in html to get the local system time

Copy code The code is as follows: <div id=&quo...

Detailed explanation of HTML form elements (Part 2)

HTML Input Attributes The value attribute The val...

How to replace all tags in html text

(?i) means do not match case. Replace all uppercas...

Tomcat components illustrate the architectural evolution of a web server

1. Who is tomcat? 2. What can tomcat do? Tomcat i...

JavaScript generates random graphics by clicking

This article shares the specific code of javascri...