mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
7 lines
207 B
SQL
7 lines
207 B
SQL
# 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;
|