系统运维-23-2-MariaDB的SQL语句基础与LAMP编译安装基础

本文介绍了MariaDB的SQL语句基础,包括如何创建和删除用户账号,以及用户权限的授予和回收。通过示例展示了如何使用CREATE USER和DROP USER命令,以及GRANT和REVOKE语句来管理用户访问权限。此外,文章还提到了MariaDB服务进程在启动时如何读取并更新内存中的授权信息。
摘要由CSDN通过智能技术生成

MariaDB的SQL语句基础

创建用户账号

    [root@lab1 ~]# mysql -uroot -predhat
    Welcome to the MariaDB monitor.  Commands end with ; or \g.
    Your MariaDB connection id is 5
    Server version: 5.5.60-MariaDB MariaDB Server

    Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

    MariaDB [(none)]> 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
    MariaDB [mysql]> CREATE USER 'wpuser'@'%' IDENTIFIED BY 'wppass';
    Query OK, 0 rows affected (0.00 sec)

    MariaDB [mysql]> SELECT User,Host,Password FROM user;
    +-----------+------------------+-------------------------------------------+
    | User      | Host             | Password                                  |
    +-----------+------------------+-------------------------------------------+
    | root      | localhost        | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 |
    | root      | lab1.example.com | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 |
    | root      | 127.0.0.1        | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 |
    | root      | ::1              | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 |
    |           | localhost        |                                           |
    |           | lab1.example.com |                                           |
    | wpuser    | localhost        | *7CD61EFBFDDDBD978EA9017F2A26A59DE4589025 |
    | wpuser    | 127.0.0.1        | *7CD61EFBFDDDBD978EA9017F2A26A59DE4589025 |
    | wpuser-01 | 127.0.0.1        | *975DE697061445EBD4D43D41B20F9F54F768420A |
    | wpuser    | %                | *C9B2DB1CA193280B971CA3602D5174A5D637D2BF |
    +-----------+------------------+----------------------------

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值