vote up 1 vote down star
1

Why is installing MySQL on Windows Vista such a bear? For someone who is not a professional database administrator, it seems like I am jumping through hoops.

This page http://forums.mysql.com/read.php?11,200958,204223#REPLY pointed to this page http://www.sqlservercentral.com/blogs/brian_kelley/archive/2008/04/04/installing-5-0-51a-mysql-community-edition-on-windows-vista.aspx which suggests this page http://port25.technet.com/archive/2007/03/16/mysql-on-windows-configuration-install.aspx which points to this beautiful pdf file http://port25.technet.com/videos/research/MySQL_Windows.pdf Ah, now I am getting somewhere.

It suggested I turn off the User Account Control (UAC). Which I did.

But after following these steps There was an error at the end of the installation that said that the server failed to start. [IMG]http://i67.photobucket.com/albums/h292/Athono/help-1.jpg[/IMG]

Where do I go to find answers?

flag

31% accept rate
Have you looked in the Event Viewer to see if it says why the service failed to start? – Rob Jul 4 at 7:55
The description for Event ID 100 from source MySQL cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer. If the event originated on another computer, the display information had to be saved with the event. The following information was included with the event: Aborting – xarzu Jul 4 at 20:05

4 Answers

vote up 0 vote down

Have you tried to install a stack such as

WAMP http://www.wampserver.com/en/

or

XAMPP http://www.apachefriends.org/en/xampp-windows.html

  • it installs Apache, PHP, MySQL all in one install. Takes maybe a few minutes at most. I use WAMP on Vista Business 32.
link|flag
vote up 0 vote down

Revo Uninstaller did the trick at removing the registry entries.

link|flag
vote up 0 vote down

The service was likely installed, but not started. Cancel that particular wizard and start the service manually via the services manager. Setting it to automatic will start it each time Windows is started.

Possible steps to open the services manager are along the lines of Right-click Computer -> Manage -> Services. The service name is set during the install and defaults to MySQL. I'm not near a Vista machine at the moment, or I would check this for you.

link|flag
I will try this as well – xarzu Jul 4 at 20:10
Thanks, I did a new installation and I still got that installation error. MySQL is there in the list of Services. I tried starting it and it gave an Error 1067: The process terminated unexpectedly – xarzu Jul 5 at 1:46
vote up 0 vote down

I have run into this before and while I never figured out exactly what caused the problem, it was related to previously installing/uninstalling MySQL. It seems the software does not completely remove the service registration, which then conflicts with new installations. I eventually got it fixed using the "sc" tool and deleting anything MySQL-related in the registry, followed by a reboot and re-install.

More Information in this bug report.

link|flag
What is the sc tool? I will have to google that I have uninstalled the program, now I guess I will dive into the registry with the regedit – xarzu Jul 4 at 20:09
The SC tool manually creates a service. support.microsoft.com/kb/251192 – xarzu Jul 4 at 20:22
MySQL is there in the list of Services. I tried starting it and it gave an Error 1067: The process terminated unexpectedly – xarzu Jul 5 at 1:46
I've found that MySQL starting and then stoping is often a firewall issue. You mostly need create an exception for mysqld-nt.exe (or what ever your copy is named) and you should be off and running. – Tom Sep 16 at 3:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.