View Single Post
  #2  
Old 01-30-2005, 09:00 AM
Skyphen
Fire Beetle
 
Join Date: Jan 2005
Posts: 21
Default

Did you grant yourself access? Use the command:
Code:
GRANT ALL PRIVILEGES ON *.* TO Username@localhost IDENTIFIED BY 'Password' WITH GRANT OPTION;
Replace username with your mysql username and replace your password with what password you are using. Note: You must be using user root to grant priveleges to another user, unless ofcourse the user you are using has the grant priveleges as well.

To connect to mysql using root user use the command:

Code:
mysql -u root
Hope this helps.
Reply With Quote