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.

Talk:Installation Guide for Installing on Amazon EC2

From MoodleDocs
Revision as of 08:50, 30 March 2012 by Jason De Donno (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.