Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does mysql modify or reclaim permissions

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to modify or reclaim permissions in mysql". Friends who are interested may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to modify or reclaim permissions in mysql".

For security, mysql can only log in locally by default. Remote login permission is turned off. If remote login is required, you can configure it as follows:

(1) Log in to mysql: [password can be empty, but it is not safe]

one

Mysql > grant all privileges on dbname.tbname to 'username'@'login ip' identified by' password' with grant option

two

Dbname=* represents all databases

three

Tbname=* represents all tables

four

Login ip=% stands for any ip

five

Password is empty, indicating that no password is required to log in

(2) Update:

one

Mysql > flush privileges

(3) users can only perform specific operations when logging in remotely:

one

Mysql > grant select,insert,update,delete on *. * to 'root'@'ip' identified by "password"

(4) Recycling permission:

01

Mysql > revoke privileges on dbname [.tbname] from username

02

Privileges includes:

03

Alter: modify tables in the database

04

Create: create a new database or table

05

Delete: deleting table data

06

Drop: delete database / table

07

Index: create / delete indexes

08

Insert: adding table data

09

Select: querying table data

ten

Update: updating table data

eleven

All: allow any operation

twelve

Usage: only login is allowed

At this point, I believe you have a deeper understanding of "how to modify or recycle permissions in mysql". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report