温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Linux环境 Mysql新建用户和数据库并授权

发布时间:2020-04-28 21:03:50 来源:网络 阅读:1957 作者:dnuser 栏目:MySQL数据库

1.登录mysql

#mysql -u root -p

2.新增用户

insert into mysql.user(Host,User,Password) values("localhost","xxx",password("***"));

注释:xxx为新建用户名,***为用户密码

3.执行该句后,还需要刷新权限表

flush privileges;

4.新建数据库并赋予用户权限
create database dbtest;

全部授权:
允许本地登录
grant all privileges on dbtest.* to xxx@localhost identified by "*";
允许任何主机登录
grant all privileges on dbtest. to xxx@'%' identified by "
";
部分授权:
grant select,update on dbtest.* to xxx@localhost identified by "***";

5.赋予权限,还需要再刷新权限表

flush privileges;

6.通过sql语句查询出新增结果

select user,host,password from mysql.user;

7.删除用户

delete from user where user=‘xxx’;
flush privileges;

8.删除数据库

drop database dbtest;

9.修改密码

update mysql.user set password=password(‘新密码’) where User='xxx' and Host='localhost';
flush privileges;

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI