MySQL: REQUIRE SSL not shown in grants

前端 未结 1 886
梦谈多话
梦谈多话 2021-01-18 17:21

MySQL 8 doesn\'t show REQUIRE SSL in the SHOW GRANTS output.

On MariaDB, when I create a user using REQUIRE SSL, it is shown i

相关标签:
1条回答
  • 2021-01-18 18:00
    mysql [localhost:8014] {msandbox} ((none)) > show create user 'test';
    +--------------------------------------------------------------------------------+
    | CREATE USER for test@%                                                         |
    +--------------------------------------------------------------------------------+
    | CREATE USER 'test'@'%' IDENTIFIED WITH 'caching_sha2_password' REQUIRE SSL ... |
    +--------------------------------------------------------------------------------+
    

    See https://dev.mysql.com/doc/refman/8.0/en/show-create-user.html

    0 讨论(0)
提交回复
热议问题