MySQL用户管理
MySQL分为普通用户与root用户。这两种用户的权限不一样。
新建普通用户
在MySQL数据库中,建立用户有3种方式:
使用CREATE USER语句来创建新的用户;
直接在mysql.user表中INSERT用户;
使用GRANT语句来新建用户;
grant命令grant all on *.* to 'user1'@'192.168.71.131' identified by '123456';
all 表示所有的权限
. 表示所有的库,前面的表示库名,后面的表示所有的表
'user1'@'192.168.71.131' 指定来源的IP为192.168.71.131,允许所有的IP的话使用 %,表示通配符。创建的用户为uesr1
也可以使用locahostgrant SELECT,UPDATE,INSERT on db1.* to 'user2'@'192.168.71.132' identified by 'passwd';
创建一个user2普通用户,并且来源IP为192.168.71.131,指定db1的库权限为SELECT,UPDATE,INSERT
查看用户的授权,这里为查询uesr1用户的授权的命令show grants for user1@192.168.71.131\G
常用sql语句
查看库里的表的行数select count(*) from mysql.user;
查看所有的内容select * from mysql.db\G;
查询字段
select db from mysql.db;
select db,user from mysql.db;
模糊查询select * from mysql.db where host like '192.168.%';
插入一个数据insert into db1.t1 values (1, 'abc');
更新数据update db1.t1 set name='aaa' where id=1;
清空一个表
truncate table db1.t1;
drop table db1.t1;
清空库drop database db1;
MySQL数据库备份恢复
备份库mysqldump -uroot -p'testpasswd1.3' mysql > /tmp/mysql.sql;
恢复库mysql -uroot -p'testpasswd1.3' mysql < /tmp/mysql.sql;
备份表mysqldump -uroot -p'testpasswd1.3' mysql user > /tmp/user.sql;
恢复表mysql -uroot -p'testpasswd1.3' mysql < /tmp/user.sql
备份所有库mysqldump -uroot -p -A >/tmp/123.sql
只备份表结构mysqldump -uroot -p'testpasswd1.3' -d mysql > /tmp/mysql.sql