Log in

View Full Version : ACCESS DENIED - FIX


A_Coder
06-22-2003, 02:06 PM
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....