MySQL database green version installation tutorial to solve system error 1067

MySQL database green version installation tutorial to solve system error 1067

What is the difference between the green version and the installation version of the software?

Generally, the installation version of the file will be written into the system registry, so there will be uninstall information of the file in the system.
For the green version, there will be no uninstall information in the system.

Plug-in installation: Some software has plug-ins in the installation version. The green version does not have any plug-ins.

The installation version has been installed and needs to be uninstalled;

Just delete the green version directly, no need to uninstall.

Is there any difference in functionality?

This is the difference in the plug-in functions just mentioned.

Installation Steps

1. Unzip the mysql file package

2. Modify the my-default.ini file

這里寫圖片描述

3. Install the service: Enter the mysqld install mysql command in the decompressed directory to install the service. You can see the mysql service in the service.

這里寫圖片描述

4. Start the service net start mysql

這里寫圖片描述

5. Connect: mysql –uroot (no password required)

mysql –uroot –p (initial password is empty) change password

a) show databases;
b) use mysql;
c) update user set password=password(”123456”) where user=”root”;
d) flush privileges;
e) quit

6. Stop the service net stop mysql

7. Remove service mysqld remove

System error 1067 was encountered during testing

這里寫圖片描述

Cause of the problem: A service has been started before, and starting the service again causes a system error

mysqlmysql;

這里寫圖片描述

Solution:

Option 1:

這里寫圖片描述

Solution 2: Delete the installation package and unzip it again

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.6 installation tutorials for various versions

MySQL 5.7 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySql 5.6.36 64-bit green version installation graphic tutorial
  • Summary of MySQL5 green version installation under Windows (recommended)
  • MySQL 5.7.11 Green Edition Installation Tutorial with Pictures and Text
  • MySQL5.6.22 Green Edition Installation Detailed Tutorial (Graphical)
  • Tutorial on installing the green version of mysql-5.7.16-winx64 on 64-bit win10 system
  • MySQL 5.7.16 green version installation tutorial detailed explanation
  • MySQL 5.6.17 Green Edition (Free Installation) Installation and Configuration Tutorial
  • MySQL green version (zip decompression version) installation graphic tutorial (mysql-5.6.22-win32.zip)
  • MySQL Green Edition Installation Method Graphic Tutorial
  • Green version mysql installation and configuration

<<:  Steps to create your own YUM repository

>>:  Example of using Vue built-in component keep-alive

Recommend

How to run the react project on WeChat official account

Table of contents 1. Use the a tag to preview or ...

JS thoroughly understands GMT and UTC time zones

Table of contents Preface 1. GMT What is GMT Hist...

A brief talk about React Router's history

If you want to understand React Router, you shoul...

Example code for evenly distributing elements using css3 flex layout

This article mainly introduces how to evenly dist...

VMware vSphere 6.7 (ESXI 6.7) graphic installation steps

Environment: VMware VCSA 6.7 (VMware-VCSA-all-6.7...

Install nvidia graphics driver under Ubuntu (simple installation method)

Install the nvidia graphics card driver under Ubu...

MySQL 8.0.11 installation tutorial with pictures and text

There are many tutorials on the Internet, and the...

SQL Practice Exercise: Online Mall Database User Information Data Operation

Online shopping mall database-user information da...

10 very good CSS skills collection and sharing

Here, clever use of CSS techniques allows you to g...

Introduction to JavaScript array deduplication and flattening functions

Table of contents 1. Array flattening (also known...

How to implement nginx smooth restart

1. Background During the server development proce...

Super detailed basic JavaScript syntax rules

Table of contents 01 JavaScript (abbreviated as: ...

Some front-end basics (html, css) encountered in practice

1. The div css mouse hand shape is cursor:pointer;...

VScode Remote SSH remote editing and debugging code

The latest Insider version of Visual Studio Code ...