Friday, 5 August 2011

Deleting Anonymous Accounts

MySQL creates some anonymous accounts that require no username to log in. We recommend that you delete these.You can get rid of these accounts by typing this:

use mysql;
delete from user where User='';
delete from db where User='';
flush privileges;

No comments:

Post a Comment