You should now have MySQL 5.0 and the GUI Tools installed and usable. Let's test things to make sure the server is ok.
Extra step for Windows users: Use the Control Panel - Admin Tools - Services to verify that mysql is running (look for a service called MySQL).
From your shell prompt:
mysqlshow -u root -p
mysqlshow -u root -p mysql
mysql -u root -p -e "SELECT User, Host FROM user" mysql
mysql -u root -p
show databases;
use mysql;
show tables;
SELECT User, Host FROM user;
exit;
Note that you may need to navigate to MySQL's bin directory if it's not in your path.
Paste the output of the SELECT statement into your documentation.