Remove empty users with more MySQL accounts

Source: Internet
Author: User

By default, after MySQL is installed, there will be anonymous users, or you can call an empty user, enter MySQL and then go directly to MySQL.

The anonymous user has certain permissions through show DATABASES; you can view the INFORMATION_SCHEMA database.

Deleting a statement is simple, log in with a user with corresponding user rights, such as root.

You can query the empty user first:

1, SELECT user,host,password from mysql.user;

2. Recommended deletion

Remote connection

Delete from Mysql.user where host= '% ';

Empty user

DELETE from Mysql.user WHERE user= ';


FLUSH privileges;

This can be done in a moment

Of course, you can also set an arbitrary password for anonymous users.

SET PASSWORD for ' @localhost = PASSWORD (' fs_^s%d1l3 ');

FLUSH privileges;

Remove empty users with more MySQL accounts

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.