blob: 704e74ae4a3004bde7bfd2c4ea897ec7abde1c92 (
plain)
1
2
3
4
5
6
7
|
# Remove anonymous users added by add_anonymous_users.inc
disable_warnings;
disable_query_log;
DELETE FROM mysql.user where host='localhost' and user='';
FLUSH PRIVILEGES;
enable_query_log;
enable_warnings;
|