mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
6 lines
172 B
PHP
6 lines
172 B
PHP
|
# Remove anonymous users added by add_anonymous_users.inc
|
||
|
disable_query_log;
|
||
|
DELETE FROM mysql.user where host='localhost' and user='';
|
||
|
FLUSH PRIVILEGES;
|
||
|
enable_query_log;
|