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

Solve the error "Can't locate ExtUtils/MakeMaker.pm in @INC"

When installing mha4mysql, the steps are roughly:...

Solution to the problem of null column in NOT IN filling pit in MySQL

Some time ago, when I was working on a small func...

How to deploy nginx with Docker and modify the configuration file

Deploy nginx with docker, it's so simple Just...

Complete steps to implement face recognition login in Ubuntu

1. Install Howdy: howdy project address sudo add-...

Analysis of the difference between emits and attrs in Vue3

Table of contents in conclusion Practice Analysis...

A brief discussion of the interesting box model of CSS3 box-sizing property

Everyone must know the composition of the box mod...

Solution for multiple Docker containers not having the same port number

Background In Docker, four containers are created...

Simple analysis of EffectList in React

Table of contents EffectList Collection EffectLis...

Solution to data duplication when using limit+order by in MySql paging

Table of contents summary Problem Description Ana...

Detailed explanation of the use of Vue Smooth DnD, a draggable component of Vue

Table of contents Introduction and Demo API: Cont...

Analysis of multi-threaded programming examples under Linux

1 Introduction Thread technology was proposed as ...

JavaScript uses canvas to draw coordinates and lines

This article shares the specific code of using ca...

Detailed explanation of memory management of MySQL InnoDB storage engine

Table of contents Storage Engine Memory Managemen...