Home > Database > Mysql Tutorial > linux下在mysql数据库中创建和删除用户

linux下在mysql数据库中创建和删除用户

WBOY
Release: 2016-06-07 15:47:08
Original
1151 people have browsed it

第一步:进入mysql mysql -uroot msyql -p 回车输入root用户的密码(安装mysql时自己指定的) 创建一个test用户,密码位test,“%“代表联网中的所有用户都能用test用户名访问数据库(所有数据库中的所有表); grant all on *.* to 'test'@'%' identified b

第一步:进入mysql

mysql -uroot msyql -p 回车输入root用户的密码(安装mysql时自己指定的)


创建一个test用户,密码位test,“%“代表联网中的所有用户都能用test用户名访问数据库(所有数据库中的所有表);

grant all on *.* to 'test'@'%' identified by 'test';

并将/etc/mysql/mysql.cnf中的bind-address一行注释


访问a_db中的所有表,用如下语句实现

grant all on a_db.*  to 'test'@'%' identified by 'test';


限制权限,限制test用户只能查询a_db中的所有表

grant select on a_db.* to 'test'@'%' identified by 'test';


查看mysql中的所有数据库用户

select distinct concat('User: ''',user,'''@''',host,''';') as query from mysql.user;


删除test用户

delete from user where User='test' and Host='%';

flush privileges;


删除数据库和数据表

drop database 数据库名;

drop table 数据表名;


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template