mysql数据库只读用户创建

2018/01/30 数据库 浏览

登录mysql

[root@s91 ~]# mysql -u root -p1234
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 106959398
Server version: 10.1.25-MariaDB MariaDB Server

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

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

MariaDB [(none)]> show databases;
+------------------------------+
| Database                     |
+------------------------------+
| test         |
| mysql        |

创建用户

MariaDB [(none)]> create user test identified by 'test123';
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> 

授权

MariaDB [cloud-lishui_daping]> grant select on `cloud-test`.* to test@"%" identified by "test1234";
Query OK, 0 rows affected (0.02 sec)

MariaDB [cloud-lishui_daping]> 

特别注意是如果数据库 有-,需要用倒引号引起来,否则会报语法错误

站内搜索

    TorchV Bot开放试用中......

    最新内容,关注“八一菜刀”公众号

    Table of Contents