View Single Post
  #1  
Old 06-22-2003, 02:06 PM
A_Coder
Fire Beetle
 
Join Date: Jun 2003
Location: Bangkok, Thailand
Posts: 24
Default ACCESS DENIED - FIX

Heres a little fix to make sure that access won't be denied when you try to grant privileges to your eq database.

Run Command.com and type
cd c:\mysql\bin
mysql -u root

GRANT ALL PRIVILEGES ON eq.* TO localuser@127.0.0.1 IDENTIFIED BY 'my_password' WITH GRANT OPTION;


It should work if you use mysql as root.... i think that was one of the main problems people were getting when they attempted to use grant privileges... just make sure you run it as root....
Reply With Quote