MySQL 4.1 installation on Windows 2000 server is giving me headaches. I know I should install it on Linux, but this is what I decided to do.
Anyway, I'm trying to install a Bugzilla server. It requires MySQL, and part of the instructions provided are to enter the following command into the SQL command line:
GRANT SELECT, INSERT,
UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
TO bugs@localhost IDENTIFIED BY '$db_pass';
The $db_pass variable is defined in the BugZilla localconfig file. The instructions say that this command is supposed to create the bugs user in MySQL and assign the specified privileges, but it gives me a syntax error. I even tried the following:
GRANT ALL PRIVILEGES TO bugs@localhost IDENTIFIED BY XXXX;
Obviously, where XXXX is our password. Any ideas what's going on here?
Anyway, I'm trying to install a Bugzilla server. It requires MySQL, and part of the instructions provided are to enter the following command into the SQL command line:
GRANT SELECT, INSERT,
UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
TO bugs@localhost IDENTIFIED BY '$db_pass';
The $db_pass variable is defined in the BugZilla localconfig file. The instructions say that this command is supposed to create the bugs user in MySQL and assign the specified privileges, but it gives me a syntax error. I even tried the following:
GRANT ALL PRIVILEGES TO bugs@localhost IDENTIFIED BY XXXX;
Obviously, where XXXX is our password. Any ideas what's going on here?