Mysql user permission management

Source: Internet
Author: User

Mysql user permission management many people have problems with authorization on the Internet, especially because there are no quotation marks for the IP address ..... most people COPY it .. log on to mysql with the root local account and add the SQL code insert into mysql. user (Host, User, Password) values ('%', 'admin', 'abc123'); -- add the admin account (Password abc123 ), this account can be accessed from any IP address, but does not include localhost (version: 5.5.9), version: 5.7.1%, or localhost access insert into mysql. user (Host, User, Password) values ('localhost', 'admin', 'abc123'); -- add the admin account (Password abc123 ), this account can only access the authorized SQL code grant all privileges on * from localhost *. * to 'admin' @ '%' identified by 'abc123'; -- grant the permission on the database. table to 'account' @ 'IP' identified by 'abc123' grant all privileges on *. * to 'admin' @ 'localhost' identified by 'abc123'; -- pay attention to the punctuation refresh permission. SQL code FLUSH PRIVILEGES; -- refresh authorization

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.