MySQL cannot log on after creating a new user, prompting Access denied for user ' username ' @ ' localhost ' (using Password:yes)

Source: Internet
Author: User

MySQL cannot log on after creating a new user, prompting Access denied for user ' username ' @ ' localhost ' (using password:yes), mostly because of the presence of anonymous users, To resolve this problem, simply delete the anonymous user in the database.

MySQL cannot log on after creating a new user, prompting Access denied for user ' username ' @ ' localhost ' (using password:yes) Workaround:
Please use the root account to run the following code from the command line or PHP program

    1. MySQL creates a new user, username username, password is password, change localhost to% allows the user to log on to all hosts
      CREATE USER ' username ' @ ' localhost ' identified by ' password ';
    2. To authorize this user, this example grants all permissions to the user, and you can change all privileges to a specific permission option.
      *. * represents all data tables under all databases, or can be specified as specific database tables
      GRANT all privileges on *. * to ' username ' @ ' localhost ' with GRANT OPTION
    3. Delete the blank account in the database (anonymous account) and execute the following two orders in turn, this step is the core step to solve the problem

DELETE from ' MySQL '. ' User ' WHERE ' user ' = ';
FLUSH privileges;

MySQL cannot log on after creating a new user, prompting Access denied for user ' username ' @ ' localhost ' (using Password:yes)

Related Article

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.