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