15
One thing I forgot to add...at one point I thought I couldn't remember the MySQL root password, and I reset it by killing mysqld, restarting it with the --skip-grant-tables option, then within MySQL client:
mysql> UPDATE user SET Password=PASSWORD('mynewpassword') WHERE User='root';
mysql> FLUSH PRIVILEGES;
Then another kill and restart normally of mysqld. Would this cause any problems?