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