Talk:Installation Guide for Installing on Amazon EC2

From MoodleDocs
Revision as of 08:58, 30 March 2012 by Jason De Donno (talk | contribs)

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.