码迷,mamicode.com
首页 > 数据库 > 详细

MySQL创建数据库与创建用户以及授权

时间:2017-06-20 14:45:32      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:创建用户   相关信息   host   get   UI   utf8   database   xsocket   can   

1.通过mysql数据库的user表查看用户相关信息

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select host,user,password from user ;
+-----------+------+-------------------------------------------+
| host      | user | password                                  |
+-----------+------+-------------------------------------------+
| localhost | root | *87F2746835A04895BB77E12AA5054A767******* |
| qxyw      | root |                                           |
| 127.0.0.1 | root |                                           |
| localhost |      |                                           |
| qxyw      |      |                                           |
+-----------+------+-------------------------------------------+
5 rows in set (0.00 sec)


2.创建数据库

mysql> create database [databasename] default character set utf8 collate utf8_general_ci;
Query OK, 1 row affected (0.00 sec)


3.创建用户

mysql> create user ‘dba‘@‘%‘ identified by ‘*******‘;
Query OK, 0 rows affected (0.00 sec)

user表中host列的值的意义
%              匹配所有主机
localhost    localhost不会被解析成IP地址,直接通过UNIXsocket连接
127.0.0.1      会通过TCP/IP协议连接,并且只能在本机访问;
::1                 ::1就是兼容支持ipv6的,表示同ipv4的127.0.0.1


4.对dba用户给予针对指定数据库进行增删改查的权限

mysql> grant select,insert,update,delete,create on [databasename].* to dba;
Query OK, 0 rows affected (0.00 sec)


注意:修改完权限以后 一定要刷新服务,或者重启服务,刷新服务用:FLUSH PRIVILEGES

MySQL创建数据库与创建用户以及授权

标签:创建用户   相关信息   host   get   UI   utf8   database   xsocket   can   

原文地址:http://www.cnblogs.com/chenjianxiang/p/7053830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!