mysql -u root eq
GRANT ALL PRIVILEGES ON eq.* TO user@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON eq.* TO user@127.0.0.1 IDENTIFIED BY 'password' WITH GRANT OPTION;
Change user to the user in your db.ini
Change password to the password in your db.ini
GRANT ALL PRIVILEGES ON eq.* TO test@localhost IDENTIFIED BY 'test' WITH GRANT OPTION;
|