Detailed graphic explanation of how to install and completely delete MySQL by decompression

Detailed graphic explanation of how to install and completely delete MySQL by decompression

1. Install MySQL

(1) Unzip the downloaded MySQL compressed file to the directory where MySQL needs to be installed

(2) Open the unzipped folder, copy the default.ini file and rename it to my.ini. The relevant configuration of this file is:

(3) Add the MySQL installation path to the Path variable in the system environment variable configuration.

(4) Open cmd.exe as an administrator, enter the bin file in the MySQL installation directory, and start the installation

First enter mysqld -install to install, then enter net start mysql to start the service, then you can use mysql -u root -p to enter mysql. There is no password for the first entry. exit, exit.

To change the mysql password, you can use: mysqladmin -u username -p old password password new password

Grant all privileges to root: grant all privileges on *.* to root@"%" identified by ".";

flush privileges;

2. Completely delete

(1) Stop the service, then look for the software starting with mysql in the control panel to uninstall it, but I couldn't find it. I chose to delete the installation file directly, and it prompted me that the file was occupied.

(2) Use the cmd window command to delete the MySQL service: sc delete mysql (mysql here refers to the MySQL service name)

(3) Delete the registry win+R and then enter regedit and press Enter to enter the registry editor

Find the HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL directory and delete it

Delete the HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL directory (I did not find this item on my computer, but deleted the other two items and successfully deleted it completely)

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL directory deleted

(4) When I tried to delete my installation file, it still prompted me that the file was in use, so I deleted it one by one from the subdirectories of the file. Later, I found that it was mysqld.exe in the bin directory that kept prompting that it was in use and I couldn't delete it.

At this time, force delete it, enter the cmd window, enter the bin file in my mysql installation directory, enter the command: mysqld.exe -remove, then go to the mysql installation directory to delete this file, it can be successfully deleted, delete the installation file,

At this point, MySQL is completely deleted and you can install another new version.

Summarize

The above is the method of installing and completely deleting MySQL by decompression 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:
  • How to delete duplicate rows in mysql
  • Detailed example of creating and deleting tables in MySQL
  • Introduction to MySQL method of deleting table data with foreign key constraints
  • Practical method of deleting a row in a MySql table

<<:  How to add abort function to promise in JS

>>:  How to implement Nginx configuration detection service status

Recommend

The pitfall record of the rubber rebound effect of iOS WeChat H5 page

Business requirements One of the projects I have ...

Docker implements container port binding local port

Today, I encountered a small problem that after s...

What are the advantages of MySQL MGR?

MGR (MySQL Group Replication) is a new feature ad...

VMware Workstation 15 Pro Installation Guide (for Beginners)

01. VMware Workstation Pro 15 Download Download: ...

HTML meta usage examples

Example Usage Copy code The code is as follows: &l...

Solution to Element-ui upload file upload restriction

question Adding the type of uploaded file in acce...

Do you know the weird things in Javascript?

Our veteran predecessors have written countless c...

Usage of Vue filters and timestamp conversion issues

Table of contents 1. Quickly recognize the concep...

IIS7 IIS8 reverse proxy rule writing, installation and configuration method

Purpose: Treat Station A as the secondary directo...

Several common methods for setting anchor positioning in HTML

There are several ways I know of to set anchor pos...

About WeChat Mini Program to implement cloud payment

Table of contents 1. Introduction 2. Thought Anal...

Detailed explanation of Nginx passively checking the server's survival status

introduce Monitors the health of HTTP servers in ...