重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 63|回复: 0
打印 上一主题 下一主题

[命令及语法] mysql数据库新建用户有哪些权限

[复制链接]
跳转到指定楼层
楼主
发表于 4 天前 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
OS:CentOS Linux release 7.9.2009 (Core)
DB:8.4.2

查看当前用户信息权限:
mysql>  select Host ,User,plugin,account_locked,password_expired,ssl_type from mysql.user;
+-----------+------------------+-----------------------+----------------+------------------+----------+
| Host      | User             | plugin                | account_locked | password_expired | ssl_type |
+-----------+------------------+-----------------------+----------------+------------------+----------+
| %         | root             | mysql_native_password | N              | N                |          |
| %         | test             | caching_sha2_password | N              | N                | ANY      |
| %         | wj               | caching_sha2_password | N              | N                | ANY      |
| localhost | mysql.infoschema | caching_sha2_password | Y              | N                |          |
| localhost | mysql.session    | mysql_native_password | Y              | N                |          |
| localhost | mysql.sys        | mysql_native_password | Y              | N                |          |
+-----------+------------------+-----------------------+----------------+------------------+----------+


创建新用户:
mysql> CREATE USER 'lisa'@'localhost' IDENTIFIED BY 'lisa';
Query OK, 0 rows affected (0.02 sec)


查看lisa用户权限
mysql> select Host ,User,plugin,account_locked,password_expired,ssl_type,Select_priv,Insert_priv,Update_priv,Create_priv,password_expired from mysql.user where user='lisa';
+-----------+------+-----------------------+----------------+------------------+----------+-------------+-------------+-------------+-------------+------------------+
| Host      | User | plugin                | account_locked | password_expired | ssl_type | Select_priv | Insert_priv | Update_priv | Create_priv | password_expired |
+-----------+------+-----------------------+----------------+------------------+----------+-------------+-------------+-------------+-------------+------------------+
| localhost | lisa | caching_sha2_password | N              | N                |          | N           | N           | N           | N           | N                |
+-----------+------+-----------------------+----------------+------------------+----------+-------------+-------------+-------------+-------------+------------------+
1 row in set (0.00 sec)


但是是有本地登录权限
[root@sztech ~]# mysql -ulisa -plisa
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 8.4.2 MySQL Community Server - GPL
Copyright (c) 2000, 2024, Oracle and/or its affiliates.

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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| performance_schema |
+--------------------+
2 rows in set (0.02 sec)






分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-11-24 19:37 , Processed in 0.096033 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表