Summary: | [PATCH] Incorrect rights for setup devel/bugzilla | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Dmitry A Grigorovich <odip> |
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Dmitry A Grigorovich
2004-08-30 20:30:25 UTC
More correctly: If you are using MySQL 4.0 or newer, enter: mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,LOCK TABLES,CREATE TEMPORARY TABLES,REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY '<bugs_password>'; mysql> FLUSH PRIVILEGES; If you are using an older version of MySQL, the LOCK TABLES and CREATE TEMPORARY TABLES permissions need to be removed from the list: mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX, ALTER,CREATE,DROP,REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY '<bugs_password>'; mysql> FLUSH PRIVILEGES; [ODiP] == Dmitry Grigorovich State Changed From-To: open->closed Committed, thanks! |