Create a user and assign permissions to MySQL under Linux

Source: Internet
Author: User

Fe_group User Name
Fe database name
123456 Password

1. Create a new user

Login mysql@>mysql-u root-p@> Password//create user mysql> insert into Mysql.user (Host,user,password) VALUES (' localhost ', ' Fe_group ', password (' 123456 '));//Refresh the System permissions table Mysql>flush privileges; This creates a user named: fe_group password 123456. Log in after exiting mysql>exit;@>mysql-u fe_group-p@> Enter password 123456mysql> login success

2. Authorizing the user

Log in to MySQL (with root privileges). I am logged in as root. @>mysql-u root-p@> Password//First create a database for the user (Fe) mysql>create db fe;//Authorization Fe_group user has all the permissions of the FE database @>grant all  privileges on fe.* to [e-mail protected] identified by ' 123456 ';//localhost is local access, other addresses cannot access,% is all @>grant all privileges on Fe.* to [e-mail protected] '% ' identified by ' 123456 ';//Refresh the System permissions table Mysql>flush privileges;

  

Create a user and assign permissions to MySQL under Linux

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.