mysql增加、删除用户、增加权限

  • 创建用户
     mysql>insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
     增加了一个用户名为test、密码为1234用户,但该用户只能在本地登陆,若想远程登陆的话可将localhost改为%表示任何一台电脑都可以登陆,或改为特定的ip表示只能在特定的ip地址上登陆。
  • 为用户添加权限
     mysql>grant all privileges on testDB.* to test@localhost identified by ‘1234‘;
  • 刷新系统权限表
     mysql>flush privileges;
  • 删除用户
     mysql>Delete FROM user Where User=‘test‘ and Host=‘localhost‘;
  • 删除账户及权限
     mysql>drop user 用户名@‘%‘;
  • 修改用户密码
     mysql>update mysql.user set password=password(‘新密码‘) where User="test" and Host="localhost";

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。