我是靠谱客的博主 甜蜜酸奶,最近开发中收集的这篇文章主要介绍mysql指定怎样创建dba_MySQL创建一个用户,指定一个数据库 授权,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Mysql 创建一个用户 hail,密码 hail,指定一个数据库 haildb 给 hail

mysql -u root -p

password

use mysql;

insert into user(host,user,password) values('localhost','hail',password('hail'));

flush privileges;

create database haildb;

grant all privileges on haildb.* to hail@localhost identified by 'hail';

flush privileges;

如果想指定部分权限给用户

grant select,update on haildb.* to hail@localhost identified by 'hail';

flush privileges;

删除用户

delete from user where user='hail' and host='localhost';

flush privileges;

删除用户数据库

drop database haildb;

修改指定用户密码

update user set password=password('new_password') where user='hail' and host='localhost';

flush privileges;

1.远程登录mysql

mysql -h ip

最后

以上就是甜蜜酸奶为你收集整理的mysql指定怎样创建dba_MySQL创建一个用户,指定一个数据库 授权的全部内容,希望文章能够帮你解决mysql指定怎样创建dba_MySQL创建一个用户,指定一个数据库 授权所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部