继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

mysql权限控制介绍

汪汪一只猫
关注TA
已关注
手记 426
粉丝 129
获赞 715

Summary: in this tutorial, we will introduce you to MySQL Access Control System and various privilege-related tables in MySQL.

MySQL implements a sophisticated access control and privilege system that allows you to create comprehensive access rules for handling client operations and effectively preventing unauthorized clients from accessing the database system.

The MySQL access control has two stages when a client connects to the server:

  • Connection verification: a client, which connects to the MySQL database server, needs to have a valid username and password. In addition, the host from which the client connects has to match with the host in the MySQL grant table.

  • Request verification: once a connection is established successfully, for each statement issued by the client, MySQL checks whether the client has sufficient privileges to execute that particular statement. MySQL has ability to check a privilege at database, table, and field level.

There is a database named mysql created automatically by MySQL installer. The mysql database contains five main grant tables. You often manipulate these tables indirectly through the statements such as GRANT and REVOKE.

  • user: contains user account and global privileges columns. MySQL uses the user table to either accept or reject a connection from a host. A privilege granted in user table is effective to all databases on the MySQL server.

  • db: contains database level privileges. MySQL uses the db table to determine which database a user can access and from which host. A privilege granted at database level in the db table applies to the database and all objects belong to that database e.g., tables, triggers, views, stored procedures, etc.

  • table_priv and columns_priv: contains table-level and column-level privileges. A privilege granted in the table_priv table applies to the table and its columns while a privilege granted in columns_priv table applies only to a specific column of a table.

  • procs_priv: contains stored functions and stored procedures privileges

MySQL makes use of those tables to control the privileges in MySQL database server. Understanding those table is very important before you can implement your own flexible access control system.

In this tutorial, you have learned how the MySQL access control system works and explored the grant tables in MySQL.

Related Tutorials

原文链接:http://outofmemory.cn/mysql/administration/getting-started-with-mysql-access-control-system

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP