How to resolve MySQL service starting and stopping unexpectedly
This article describes the process of resolving the following MySQL® for Windows® error:
MySQL service on local computer started and then stopped. Some services stop automatically if they are not in use by other services or programs.
The solution varies depending on your version of MySQL. Attempt the solutions in the order of the following sections.
Restart the service
Restart the MySQL service by running the following command:
mysqld --initialize
You need to log in as root
or use sudo -i
to run this command.
Reinstall the service
Log in as root
and reinstall the MySQL service by running the following commands:
mysqld --install
mysqld --initialize
Verify the my.ini config file
Certain versions of MySQL add invalid hex values at the beginning of the my.ini configuration file.
Deleting the first three hex values using a hex editor should resolve this issue. This occurs because of an
issue with a script line. The line specifies that each file must have a unique ID, which then appends the
byte order to mark the text file.
If you have a backup of the original my.ini file, you can copy the contents of this file and manually
paste them onto the current my.ini to resolve this issue.
Verify the Network Service permissions
You might need to verify that the Network Service has the proper permissions. Use the steps in this section
to verify these permissions are correct:
-
Right-click the Data folder.
-
Select Properties.
-
Select the Security tab.
-
Click Advanced.
-
Click Change Permissions....
-
Click Add....
-
Enter
NETWORK SERVICE
. -
Click Check Names.
-
Click OK.
-
Select Full Control.
Check for missing default files
It's possible that default files are missing. Use the steps in this section to check for this missing default files:
-
Open the command prompt.
-
Go to the MySQL **bin** and run the following command:
mysqld --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini" --standalone --console
-
If it specifies a missing default folder, you should create a new default file.
Updated 12 months ago