Detailed steps for completely uninstalling and reinstalling MySQL under Windows 10

Detailed steps for completely uninstalling and reinstalling MySQL under Windows 10

I believe that everyone needs to reinstall MySQL for various reasons. Because of problems when connecting MySQL and Qt, the author was forced to choose to replace 64bitMySQL with 32bitMySQL. Due to unclean uninstallation, various problems may occur during installation. Now I will record the process of uninstalling and reinstalling for reference by those who need it.

Step 1: Stop the service

Start cmd->enter services.msc->find mySQL->stop SQL service

Step 2: Delete the files

Find your installation directory and delete all the files

Step 3: Delete the registry

Start cmd->enter regedit->search mySQL, right-click and delete all (or find MySQL according to the following path, right-click and delete)

HKEY_LOCAL_MACHINE/SYSTEM/ControlSet001/Services/Eventlog/Applications/MySQL HKEY_LOCAL_MACHINE/SYSTEM/ControlSet002/Services/Eventlog/Applications/MySQL HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Eventlog/Applications/MySQL 

Step 4: Configure the my.ini file

The version I downloaded is mysql-5.6.17-win32, zip archive, stored in drive D

Create a new my.ini file in the D:\mysql\mysql-5.6.17-win32\ directory and write the following code:

[mysql] 
# 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 to basedir=D:\mysql\mysql-5.6.17-win32 
# Set the storage directory of mysql database data datadir=D:\mysql\mysql-5.6.17-win32\data 
# Maximum number of connections allowed max_connections=200 
# 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 that the directory address should be replaced with your own mySQL storage address.

Step 5: Installation

Open cmd (note to run as administrator) -> enter cdD:\mysql\mysql-5.6.17-win32\bin

If you enter mysqld install, the following error will appear:

It indicates that the service has been installed.

So, next we need to continue to enter mysqld -remove

The prompt command runs successfully.

Re-enter mysqld install:

Reinstall successful!

Type net start mysql:

The prompt is successfully started.

Summarize

The above is the detailed steps for completely uninstalling and reinstalling MySQL under win10 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:
  • 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
  • MySQL 5.7 decompressed version installation, uninstallation and garbled code problem graphic solution
  • 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

<<:  Vue implements various ideas for detecting sensitive word filtering components

>>:  WHMCS V7.4.2 Graphical Installation Tutorial

Recommend

The best way to start a jar package project under Centos7 server

Preface Everyone knows how to run a jar package o...

Should nullable fields in MySQL be set to NULL or NOT NULL?

People who often use MySQL may encounter the foll...

MySQL 5.5.27 installation graphic tutorial

1. Installation of MYSQL 1. Open the downloaded M...

Detailed explanation of Linux one-line command to process batch files

Preface The best method may not be the one you ca...

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

Small paging design

Let our users choose whether to move forward or ba...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

How to install Nginx in CentOS7 and configure automatic startup

1. Download the installation package from the off...

Use shell script to install python3.8 environment in CentOS7 (recommended)

One-click execution To install Python 3.8 in a vi...

Proxy_pass method in multiple if in nginx location

1. First, let's review the relevant knowledge...

VMware Workstation Pro 16 License Key with Usage Tutorial

VMware Workstation is a powerful desktop virtual ...

A guide to writing flexible, stable, high-quality HTML and CSS code standards

The Golden Rule Always follow the same set of cod...

Learn MySQL execution plan

Table of contents 1. Introduction to the Implemen...

How to execute PHP scheduled tasks in CentOS7

Preface This article mainly introduces the releva...

How MLSQL Stack makes stream debugging easier

Preface A classmate is investigating MLSQL Stack&...