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

Implementing carousel with native JavaScript

This article shares the specific code for impleme...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

Docker online and offline installation and common command operations

1. Test environment name Version centos 7.6 docke...

Complete steps for vue dynamic binding icons

0 Differences between icons and images Icons are ...

Markup Language - Anchor

Previous: Markup Language - Phrase Elements Origin...

Detailed explanation of the steps of using ElementUI in actual projects

Table of contents 1. Table self-sorting 2. Paging...

Implementing a simple student information management system based on VUE

Table of contents 1. Main functions 2. Implementa...

How to write object and param to play flash in firefox

Copy code The code is as follows: <object clas...

How to build a private Docker repository using Harbor

Table of contents 1. Open source warehouse manage...

Play with the connect function with timeout in Linux

In the previous article, we played with timeouts ...