"SQL chapter--Creating users based on mysql5.7--"

Source: Internet
Author: User

SQL: Create User: >=mysql5.7.6 View Users:mysql> Select user,host,authentication_string from Mysql.user;ALTER USER:ALTER USER [IF exists]user () identified by ' auth_string ';  ADDING USER Account:CREATE USER ' finley ' @ ' localhost ' identified by ' some_pass '; GRANT all privileges on *. * to ' finley ' @ ' localhost ' with GRANT OPTION;CREATE USER ' Finley ' @ '% ' identified by ' some_pass '; GRANT all privileges on *. * to ' Finley ' @ '% ' with GRANT OPTION;mysql> CREATE USER ' admin ' @ ' localhost ' identified by ' admin_pass ';mysql> GRANT reload,process on * * to ' admin ' @ ' localhost ';mysql> CREATE USER ' dummy ' @ ' localhost '; mysql> SHOW CREATE USER ' admin ' @ ' localhost ' \g*************************** 1. Row ***************************CREATE USER for [email protected]:CREATE USER ' admin ' @ ' localhost ' identified with ' Mysql_native_password ' as ' * 67acdebdab923990001f0ffb017eb8ed41861105 ' REQUIRE NONE PASSWORD EXPIRE DEFAULT account UNLOCK  DROP USER:DROP USER ' jeffrey ' @ ' localhost ';

"SQL chapter--Creating users based on mysql5.7--"

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.