Advertisement

MySQL安全配置

阅读量:

mysql中存在4个控制权限的表,分别为

复制代码
 mysql.USER表
    2. mysql.DB表
    3. mysql.TABLES_PRIV表
    4. mysql.COLUMNS_PRIV表

需要注意的是,在MySQL中有一个名为information_schema的数据库夹层(Schema),它包含了系统的一些权限信息。然而它实际上是作为一个视图存在,并且为系统管理员提供了一个便捷的方式来获取元数据。从Mysql主程序的角度来看,《information_schema》并不是一个独立的数据库表(表),而是通过查询结果返回相关的元数据信息。The information schemainformation_schema is dedicated to providing system-wide metadata and offers a convenient way for system administrators to access metadata through queries rather than maintaining it as an actual table structure within the MySQL engine.

当我们在进行数据库连接和登录操作时(即完成数据库连接和身份认证流程),通过检查MySQL权

全部评论 (0)

还没有任何评论哟~