位置:首页 > 数据库 > MySQL
mysql 用户授权的简单示例
日期:2023-01-07 人气:

大家好,对mysql 用户授权的简单示例感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看mysql 用户授权的简单示例的例子吧。

授权命令:

1.全部权限:grant all on *.* to user@192.168.10.2 identified by "pass";

2.部分权限:grant select,insert into on *.* to user@192.168.10.2 identified by "pass"

查看用户授权表: 

select user,host,password from mysql.user;

mysql下默认存在mysql数据库,里边的user表存储着用户和授权信息。

=======================================

遇到的问题:本地的navicat链接不上我虚拟机的mysql

解决:需要虚拟机的mysql授权给本地的ip:grant all on *.* to user@192.168.64.21 identified by "pass";

您可能感兴趣的文章