that means that the mysql server isn't turned on. you need to double click on c:\mysql\bin\winmysqladmin.
a window should popup and minimize. if it does not go away, just close it. you should see a top light in the sys tray.
if the stop light in the sys tray is green, then you are on, if the light on the sys tray is red, then right click on it and choose "start service"
now you navigate in the command prompt to c:\mysql\bin
i know bdl and the mysql manual recommend using the mysqladmin to set the root password, but i've installed mysql on 2 different computers yesterday to check this out and i could not get it to work. so do this:
from the command line:
Code:
c:
cd mysql\bin
mysql -uroot
now your prompt should have 'mysql>' at the beginning of it. you need to do 2 things:
1. set your root password:
Code:
mysql> set password = password('mypassword'); 2. create a database:
Code:
mysql> create database mydatabase;
now download phpmyadmin as before so you have a gui for your database.