MySQL添加新用戶,爲新用戶分配權限,Mysql版本5.7mysql
首先進入Mysql控制檯:sql
mysql -uroot -p數據庫
grant受權格式:grant 權限列表 on 庫.表 to 用戶名@'ip' identified by "密碼";ide
建立一個新用戶(user)併爲此用戶分配權限(這裏先分配對全部數據庫的表增刪改查的權限),identified by 後面填入你新用戶的密碼ip
grant select,insert,update,delete on *.* to 'user'@'%' identified by 'your password';date
若是是給予所有權限那麼就這樣select
grant all privileges on *.* to 'user'@'%' identified by 'your password';權限
記得每次操做完要刷新受權密碼
flush privileges;數據
查看用戶權限
show grants for user;
回收權限,revoke回收權限格式:revoke 權限列表 on 庫.表 from 用戶名@'ip';
revoke select,insert,update,delete ON *.* from 'user'@'%'