Home  >  Article  >  Database  >  What should I do if system error 1067 occurs in the green version of Mysql database?

What should I do if system error 1067 occurs in the green version of Mysql database?

小云云
小云云Original
2017-12-22 14:48:231907browse

Generally, the installation version of the file will be written to the system registry, so there will be uninstallation information for the file in the system. For the green version, there will be no uninstall information in the system. This article mainly introduces the MySql database green version installation tutorial and the solution to system error 1067 in detail. It has certain reference value. Interested friends can refer to it. I hope it can help you.

Installation of plug-ins: Some software in the installation version has plug-ins. The green version does not contain any plug-ins.

The installation version has to be uninstalled;

Just delete the green version without uninstalling it.

Are there any differences in functions?

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

What should I do if system error 1067 occurs in the green version of Mysql database?

3. Install the service: From the command line, go to the decompression directory and enter the mysqld install mysql command to install the service. You can see the mysql service in the service

What should I do if system error 1067 occurs in the green version of Mysql database?

4. Start the service net start mysql

What should I do if system error 1067 occurs in the green version of Mysql database?

5. Connection: 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 the service mysqld remove

System error 1067 was encountered during the test

What should I do if system error 1067 occurs in the green version of Mysql database?

# Reason:

## mysql mysql;

What should I do if system error 1067 occurs in the green version of Mysql database?

Solution:

Option 1:


What should I do if system error 1067 occurs in the green version of Mysql database?

Option 2: Delete the installation package and re-unzip it

Related recommendations:


Mysql net start mysql starts, prompting a system error 5

Parsing javascript system error: -1072896658 solution_javascript skills

Detailed explanation of how to solve the problem of successfully inserting data into MySql but reporting [Err] 1055 error

The above is the detailed content of What should I do if system error 1067 occurs in the green version of Mysql database?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn