Example analysis of mysql user rights management

Example analysis of mysql user rights management

This article describes the MySQL user rights management example. Share with you for your reference, the details are as follows:

In this article:

  • What are user permissions?
  • Appropriate user permissions
  • View permissions
  • Modify permissions
  • Remove permissions

Release date: 2018-04-19


What are user permissions:

  • Each user has his or her own user permissions, such as query table permissions, modify table permissions, insert table permissions, add new user permissions, etc.
  • Specific permissions: image


Appropriate user permissions:

  • Most users only need to read and write tables, but a few users even need to be able to create and delete tables;
  • Some users need to read the table but may not need to update the table;
  • For most users, only read and write access to tables should be provided , and they should not be allowed to create, modify, or delete tables.
  • For most users, they should not be given the permission to create, modify or delete other users . Instead, only administrators should have such permission.
  • For most users, the ability to modify user permissions should not be given, and should only be given to administrators.
  • other. . .


View permissions:

  • show grants for username@host address; [If the user's login address is %, you can leave the login address blank]
    • image
  • You can also view permissions by viewing user information: select * from user \G
    • The priv field in the user information table represents various permissions. A value of N means no permission, and a value of Y means permission.


Modify permissions:

  • Grant permissions: grant permissions on database name.data table to username@accessible address; [If the user's accessible address is %, you can leave the accessible address blank]
    • The new permissions granted will be compared with the original ones, and those in the same database will be merged image
    • You can grant multiple permissions at the same time, separated by commas: image
  • Refresh privileges: flush privileges; [The modified user permissions will not take effect immediately. If you want them to take effect immediately, you need to refresh the permissions]

Permissions that can be granted (refer to mysql must know):

image

image


To remove permissions:

  • Delete permission: revoke permission on database name.data table from user name@accessible address; [if the user's accessible address is %, the accessible address can be left blank]
    • image
    • image

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Detailed explanation of MySQL user rights management
  • Detailed explanation of MySQL user rights management
  • Implementation of Mysql User Rights Management

<<:  Vue+Openlayer batch setting flash point implementation code (based on postrender mechanism)

>>:  CentOS uses expect to remotely execute scripts and commands in batches

Recommend

Detailed explanation of Vue project packaging

Table of contents 1. Related configuration Case 1...

Zabbix WEB monitoring implementation process diagram

Take zabbix's own WEB interface as an example...

Summary of basic SQL statements in MySQL database

This article uses examples to describe the basic ...

A complete list of commonly used HTML tags and their characteristics

First of all, you need to know some characteristi...

Several popular website navigation directions in the future

<br />This is not only an era of information...

vue+springboot realizes login function

This article example shares the specific code of ...

vue-electron problem solution when using serialport

The error is as follows: Uncaught TypeError: Cann...

MySQL Database Basics SQL Window Function Example Analysis Tutorial

Table of contents Introduction Introduction Aggre...

Solution to the problem that mysql local login cannot use port number to log in

Recently, when I was using Linux to log in locall...

Reasons and solutions for the failure of React event throttling effect

Table of contents The problem here is: Solution 1...

JS deep and shallow copy details

Table of contents 1. What does shallow copy mean?...

How to deploy Node.js with Docker

Preface Node will be used as the middle layer in ...

Detailed explanation of Nginx access restriction configuration

What is Nginx access restriction configuration Ng...