MySQL创建用户及赋权限

安装好MySql数据库之后,启动mysql服务,我这里用的MySQL版本是5.6.21。

  • 登录mysql,输入密码之后提示欢迎登录MySQL管理台。

[root@localhost ~]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2238
Server version: 5.6.21 MySQL Community Server (GPL)
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

  • 查看mysql中所有的数据库。下列数据库都是系统自动生成的。

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| bmrbs              |
| mysql              |
| performance_schema |
| test               |
+--------------------+
6 rows in set (0.00 sec)

  • 查看mysql中所有的用户,root是系统自动生成的。

mysql> select user,host from mysql.user;
+---------+-----------------------+
| user    | host                  |
+---------+-----------------------+
| root    | %                     |
| root    | 127.0.0.1             |
| root    | 192.168.1.172         |
| root    | ::1                   |
| root    | localhost             |
| root    | localhost.localdomain |
+---------+-----------------------+
8 rows in set (0.00 sec)

  • 创建用户。

create user test identified by 'test';

  • 赋权限,*.*表示(数据库名.表名)。

grant all privileges on *.* to test;

 


 

 

 

 

你可能感兴趣的:(MySQL创建用户及赋权限)