MySQL用户管理MySQL分为普通用户与root用户。这两种用户的权限不一样。新建普通用户在MySQL数据库中,建立用户有3种方式:使用CREATEUSER语句来创建新的用户;直接在mysql.user表中INSERT用户;使用GRANT语句来新建用户;grant命令grantallon*.*to‘user1‘@‘192.168.71.131‘identified
分类:
数据库 时间:
2018-06-21 21:09:09
阅读次数:
208
mysql用户管理创建用户并授权登录grantallon*.*to‘user1‘@‘127.0.0.1‘identifiedby‘123456‘;第一个*表示db_name;第二个*表示tb_name指定其来源IP127.0.0.1(只可通过此IP登录)也可以使用通配符%,代表所有IPidentifiedby设置密码[root@akuilinux01
分类:
数据库 时间:
2018-06-21 11:23:54
阅读次数:
202
13.4MySQL用户管理创建用户并授权指定登录IP[root@centos-01linux~]#mysql-uroot-pEnterpassword:WelcometotheMySQLmonitor.mysql>grantallon.to‘user1‘@‘127.0.0.1‘identifiedby‘123456‘;#创建user1用户并授予
分类:
数据库 时间:
2018-03-23 11:36:31
阅读次数:
190