Talk:Installation Guide for Installing on Amazon EC2
Revision as of 08:50, 30 March 2012 by Jason De Donno (talk | contribs)
Note: You are currently viewing documentation for Moodle 3.2. Up-to-date documentation for the latest stable version of Moodle is probably available here: Installation Guide for Installing on Amazon EC2.
Under "Set up MYSQL" "Make additional security-related changes to mysql", there is a command to remove anonymous access:
mysql> DELETE FROM mysql.user WHERE user = ;
This returns a syntax error for me. However, if I do this:
mysql> DELETE FROM mysql.user WHERE user = ';
Then it appears to work. I think this is the correct syntax.