1# Allow anonymous users to connect
2disable_warnings;
3disable_query_log;
4INSERT IGNORE INTO mysql.global_priv (host, user) VALUES ('localhost','');
5FLUSH PRIVILEGES;
6enable_query_log;
7enable_warnings;
8