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
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
4. Start the service net start mysql
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
# Reason:
Solution:
Option 1: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!