CH3SNAS Talk:Tutorials/Mysql
From NAS-Tweaks
GRANT SELECT,INSERT,UPDATE,DELETE *.* TO 'YOUROTHERUSERNAME'@'localhost' IDENTIFIED BY 'YOUROTHERPASSWORD' WITH GRANT OPTION;
should be edited to read:
GRANT SELECT,INSERT,UPDATE,DELETE ON *.* TO 'YOUROTHERUSERNAME'@'localhost' IDENTIFIED BY 'YOUROTHERPASSWORD' WITH GRANT OPTION;
I was working my way through this tutorial when I came to the first statement above, which did not work for me. When I added the ON word (like the preceding statement in the tutorial) it worked. Maybe I did something wrong, however it may be worth a quick look. I know far to little to do any more than post this note. Feel free to remove is this is in the wrong place. Mark
- You are right, this should be with an "ON". I've edited the Tutorial, should be fine now. Thank you very much! Uli 14:03, 10 January 2009 (UTC)
