Mysql添加用户

#连接mysql
mysql -u root -p


#创建用户
create USER "adam"@"localhost" identified by '你的密码';

#查看用户列表

select CONCAT('User:',user,'@',host) from mysql.user;

输出
+-------------------------------+
| CONCAT('User:',user,'@',host) |
+-------------------------------+
| User:adam@localhost           |
| User:mysql.session@localhost  |
| User:mysql.sys@localhost      |
| User:root@localhost           |
+-------------------------------+
4 rows in set (0.00 sec)


#分配权限 
 grant all privileges on wohuanicai.* to 'adam'@'localhost' identified by '你的密码';
 
 #Over


Adam博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论
  • Powered by bjyblog modified by Adam © 2014-2024 www.lixiaopeng.com 版权所有 ICP证:鲁ICP备15039297号
  • 联系邮箱:14846869@qq.com