MySQL Configuration Hangs at "Starting Server": A Solution
When installing MySQL using the wizard on a Windows 8 machine, users may encounter a persistent issue where the server configuration process stalls on the "starting server" stage. Despite attempts to troubleshoot and re-install the software, the issue persists. This article delves into a specific solution that has proven effective in resolving this lingering problem.
Analysis
Examining the installation logs reveals that all other configuration steps have completed successfully, indicating that the issue lies within the final "Starting Server" step. Further investigation suggests that the MySQL service is configured to run as the Network Service account, despite the desired setting being the Local System Account.
Solution
To rectify this inconsistency, follow these steps:
Explanation
The MySQL Installer encounters a bug that overrides the intended service account setting, causing the service to start under a different identity. By manually correcting this discrepancy and starting the service as the Local System Account, the "Starting Server" loop is broken, allowing the installation to proceed.
This detailed solution addresses the specific issue encountered during MySQL installation on Windows 8. By implementing these steps, users can successfully complete the configuration process and enjoy a fully functional MySQL server.
The above is the detailed content of Why Does MySQL Installation Hang at 'Starting Server' on Windows 8?. For more information, please follow other related articles on the PHP Chinese website!