数据库创建用户和受权限

2022/7/7 2:22:59

本文主要是介绍数据库创建用户和受权限,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

# 在数据库创建一个luffy用户,密码是Luffy123?,只能对luffy_api库有操作权限
    -查看数据库的用户:select user,host,authentication_string from mysql.user;
    -创建用户;grant 权限(create, update) on 库.表 to '账号'@'host' identified by '密码'
  
    grant all privileges on luffy_api.* to 'luffy'@'%' identified by 'Luffy123';
    grant all privileges on luffy_api.* to 'luffy'@'localhost' identified by 'Luffy123';
    
"""
如MySQL版本在5.7以上时,创建用户和权限要分开设不然会报错:
ip地址
     create user luffy@"%" identified by "Luffy123";
     grant all on luffy_api.* to luffy@"%" with grant option;
 本地localhost
     create user luffy@"localhost" identified by "Luffy123";
     grant all on luffy_api.* to luffy@"localhost" with grant option;
"""


这篇关于数据库创建用户和受权限的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程