Mysql添加用户

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#连接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           |
+-------------------------------+
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-2025 www.lixiaopeng.com 版权所有 ICP证:鲁ICP备15039297号
  • 联系邮箱:14846869@qq.com