How to create users and manage permissions in MySQL

How to create users and manage permissions in MySQL

1. How to create a user and password

1. Enter the mysql database

mysql> use mysql
Database changed

2. Add, delete, and modify new users

1. Create a user

# Specify the IP address: 192.118.1.1 as user chao to log in create user 'chao'@'192.118.1.1' identified by '123';
#Specify the IP address: 192.118.1. Chao user login create user 'chao'@'192.118.1.%' identified by '123';
# Specify any ip user chao to log in create user 'chao'@'%' identified by '123';

2. Delete User

drop user 'username'@'IP address';

3. Modify user

rename user 'username'@'IP address' to 'new username'@'IP address';

4. Change password

set password for 'user name'@'IP address'=Password('new password');

2. Authorize the current user

#View permissions show grants for 'user'@'IP address'

#Authorize user chao to query, insert, and update only the db1.t1 file grant select ,insert,update on db1.t1 to "chao"@'%';

#Authorize the Chao user to query only the db1 file grant select on db1.* to "chao"@'%';

# Indicates all permissions, except for the grant command, which is only available to root. User chao has any operation on the t1 file under db1. grant all privileges on db1.t1 to "chao"@'%';
#The chao user can perform any operation on the files in the db1 database. grant all privileges on db1.* to "chao"@'%';
#chao user has any operation on all files in the database grant all privileges on *.* to "chao"@'%';

3. Remove the current user's permissions

#Revoke permissions #Revoke any operation of user Chao on the t1 file of db1 revoke all on db1.t1 from 'chao'@"%"; 

# Revoke all permissions of the Chao user from the remote server on all tables in database db1 revoke all on db1.* from 'chao'@"%"; 

Revoke all privileges on *.* from 'chao'@'%';

The above is the details of how to create users and permission management in MySQL. For more information about creating users and permission management in MySQL, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to use DCL to manage users and control permissions in MySQL
  • Example analysis of mysql user rights management
  • Detailed explanation of MySQL user and permission management
  • In-depth explanation of MySQL user account management and permission management
  • Detailed explanation of MySQL user rights verification and management methods
  • Detailed explanation of MySQL user rights management
  • Summary of basic user and permission management methods in MySQL
  • Detailed explanation of MySQL user rights management

<<:  How to use the yum command

>>:  Detailed explanation of webpack-dev-server core concepts and cases

Recommend

One minute to experience the smoothness of html+vue+element-ui

Technology Fan html web page, you must know vue f...

JS practical object-oriented snake game example

Table of contents think 1. Greedy Snake Effect Pi...

The most complete package.json analysis

Table of contents 1. Overview 2. Name field 3. Ve...

Vue page monitoring user preview time function implementation code

A recent business involves such a requirement tha...

Vue3 compilation process-source code analysis

Preface: Vue3 has been released for a long time. ...

WeChat applet scroll-view realizes left and right linkage

This article shares the specific code for WeChat ...

How to understand JS function anti-shake and function throttling

Table of contents Overview 1. Function debounce 2...

How to configure MySQL master-slave synchronization in Ubuntu 16.04

Preparation 1. The master and slave database vers...

Example code of the spread operator and its application in JavaScript

The spread operator allows an expression to be ex...

Service management of source package installation under Linux

Table of contents 1. Startup management of source...

JavaScript to achieve JD.com flash sale effect

This article shares the specific code of JavaScri...

Summary of javascript date tools

let Utils = { /** * Is it the year of death? * @r...

MySQL study notes on handling duplicate data

MySQL handles duplicate data Some MySQL tables ma...

Details on how to use class styles in Vue

Table of contents 1. Boolean 2. Expression 3. Mul...