MySQL 5.7 decompressed version installation, uninstallation and garbled code problem graphic solution

MySQL 5.7 decompressed version installation, uninstallation and garbled code problem graphic solution

1. Installation of the decompressed version

(1). Download the compressed package and unzip it to a disk location

Compressed package download link: https://dev.mysql.com/downloads/mysql/

Compressed file contents:

這里寫圖片描述

(2). Write configuration files

Copy my-default.ini and rename it to my.ini, then modify or add configuration information:

[mysqld]
#mysql decompression directory basedir = <decompression directory>
#data folder location, used to store libraries and tables datadir = <data folder directory>
#mysql default port number port = 3306
#Database server character encoding character-set-server = utf8

(3). Add environment variables

Add the bin directory to the PATH environment variable

(4). Install MySQL service

Run cmd as an administrator, command:

mysqld -install [service name]

Note: The service name is usually MySQL by default, so you don’t need to specify it.

When the prompt: Service successfully installed. is displayed, it means that the MySQL service has been successfully installed.

(5). Initialize MySQL

Run cmd as an administrator, command:

mysqld --initialize-insecure

No prompts or errors. If you can see "MySQL" in the system's "Services", the installation is successful.

(6). Start the MySQL service

Run cmd, command:

net start mysql

Tip: MySQL service is starting and MySQL service has started successfully. Indicates successful startup

(7). Log in to MySQL

Run cmd, command:

mysql –u root –p

(When initializing MySQL, a computer name.err file will be generated, which contains the initialization password)

2. Uninstall the unpacked version of MySQL

(1) Shut down the service

Run cmd as an administrator, command:

net stop mysql

(2). Uninstall service

Run cmd as an administrator, command:

mysqld -remove [service name]

(3) Deleting files

Delete the mysql installation directory

(4). Delete registry information

Clear the MySQL service in the registry. There are several places:

Delete the directory HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL. Delete the directory HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL. Delete the directory HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL.

The ControlSet001 and ControlSet002 in the registry are not necessarily 001 and 002, they may be ControlSet005, 006, etc. You can delete them all.

3. Common installation issues

(1). Data file error

Error description: When starting the mysql service, the prompt is:

The mysql service cannot be started. The server did not report any errors. Type NET HELPMSG 3534 for more help.
Cause of error: This error will occur if the data file already exists before initialization, or if some files are missing from the data file.

Solution: Execute the command first:

mysqld -remove [service name]

Then delete the data folder. If you cannot delete it, just restart it. Then reinstall it and there will be no problem.

(2). Wrong password

Error description: When logging in:

ERROR 1045(28000): Access denied for user 'root'@'localhost' (using password: YES)

Cause of error: Wrong password during login

Solution: Using the mysqld –initialize method to install will generate a password consisting of a random string. This password can be found in the error log <mysql decompression directory>\data\<computer user name>.err.

4. Coding Issues

(1). Check the code

Open cmd, log in to mysql, and execute SQL statements:

show variables like 'character%';

It can be seen that except for the character-set-server = utf8 configured at the beginning of the installation; the others are not utf8 encoding, so garbled characters will appear when we use the database.

(2). Modify the configuration file

Modify these items in the configuration file:

[mysqld]
#mysql server encoding character-set-server = utf8
collation-server = utf8_general_ci
[mysql]
#mysql default encoding default-character-set = utf8
[mysql.server]
#Server default encoding default-character-set = utf8
[mysqld_safe]
default-character-set = utf8
[client]
#Client default encoding default-character-set = utf8

(3). Delete your current MySQL service and re-register the MySQL service

Run cmd as administrator:

sc delete mysql

Tip: [SC] DeleteService is successful

mysqld –install

Tip: The service already exists! Success

net stop mysql

Tip: MySQL service is stopping... Success if the service name is invalid

mysql –install

Tip: Service successfully installed.

Open cmd, log in to mysql, and execute SQL statements:

show variables like 'character%';

The results are as follows:

這里寫圖片描述

Done!

5. Install the graphical interface

(1). Install all the way through next, then start

The above is the graphic solution to the installation, uninstallation and garbled code problems of the decompressed version of MySQL 5.7 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!

You may also be interested in:
  • Detailed steps for completely uninstalling and reinstalling MySQL under Windows 10
  • MySQL uninstall and install graphic tutorial under Linux
  • Installation and uninstallation of MySQL 5.7 decompressed version and summary of common problems
  • Detailed explanation of installing and completely uninstalling mysql with apt-get under Ubuntu
  • How to uninstall MySQL 5.7.19 under Linux
  • Several methods to completely uninstall MySQL under CentOS
  • How to completely uninstall MySQL, Apache2 and Php in Ubuntu
  • Detailed tutorial on MySql installation and uninstallation
  • How to completely delete and uninstall MySQL in Windows 10
  • Diagram of the process from uninstallation to installation of MySQL 5.7.18 yum under Linux
  • Uninstalling MySQL database under Linux
  • Complete steps for uninstalling MySQL database
  • Analysis of the reasons why the mysql-libs* crontab command that comes with Linux 6.7 cannot be used after uninstallation
  • Ubuntu 16.04.1 MySQL installation and uninstallation graphic tutorial
  • Detailed explanation of completely uninstalling mysql under Linux
  • How to install and uninstall MySQL service under Windows (MySQL 5.6 zip decompression version installation tutorial)
  • How to install and uninstall MySQL 5.7.11 on Mac
  • Detailed steps for completely uninstalling MySQL 5.7

<<:  In-depth interpretation of /etc/fstab file in Linux system

>>:  Nine advanced methods for deduplicating JS arrays (proven and effective)

Recommend

What kinds of MYSQL connection queries do you know?

Preface If the query information comes from multi...

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

Solution for Baidu site search not supporting https (tested)

Recently, https has been enabled on the mobile ph...

Detailed steps for yum configuration of nginx reverse proxy

Part.0 Background The company's intranet serv...

Steps to install GRUB on Linux server

How to Install GRUB for Linux Server You cannot u...

Detailed explanation of PHP+nginx service 500 502 error troubleshooting ideas

Overview When a 500 or 502 error occurs during ac...

Detailed explanation of the new background properties in CSS3

Previously, we knew several attributes of backgro...

How to implement variable expression selector in Vue

Table of contents Defining the HTML structure Inp...

How to try to add sticky effect to your CSS

Written in front I don’t know who first discovere...

Front-end development must learn to understand HTML tags every day (1)

2.1 Semanticization makes your web pages better u...

JavaScript counts the number of times a character appears

This article example shares the specific code of ...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

How to implement import and export mysql database commands under linux

1. Export the database using the mysqldump comman...

7 Ways to Write a Vue v-for Loop

Table of contents 1. Always use key in v-for loop...