MySQL 5.7 建立使用者並授權
--建立使用者
mysql> create user 'test'@'%' identified by 'System#2013';
Query OK, 0 rows affected (0.00 sec)
mysql> select host,user from mysql.user;
+-----------+-----------+
| host | user |
+-----------+-----------+
| % | test |
| localhost | jeffrey |
| localhost | mysql.sys |
| localhost | root |
+-----------+-----------+
4 rows in set (0.00 sec)
--授予對TEST資料庫的操作許可權
mysql> GRANT ALL ON test.* TO 'test'@'%';
Query OK, 0 rows affected (0.01 sec)
--測試新建立的使用者
[root@T400-kelong ~]# mysql -utest -pSystem#2013
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 6
Server version: 5.7.10-log MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> use test
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
mysql> CREATE TABLE client_firms (
-> id INT,
-> name VARCHAR(35)
-> )
-> PARTITION BY LIST (id) (
-> PARTITION r0 VALUES IN (1, 5, 9, 13, 17, 21),
-> PARTITION r1 VALUES IN (2, 6, 10, 14, 18, 22),
-> PARTITION r2 VALUES IN (3, 7, 11, 15, 19, 23),
-> PARTITION r3 VALUES IN (4, 8, 12, 16, 20, 24)
-> );
Query OK, 0 rows affected (0.15 sec)
mysql> create user 'test'@'%' identified by 'System#2013';
Query OK, 0 rows affected (0.00 sec)
mysql> select host,user from mysql.user;
+-----------+-----------+
| host | user |
+-----------+-----------+
| % | test |
| localhost | jeffrey |
| localhost | mysql.sys |
| localhost | root |
+-----------+-----------+
4 rows in set (0.00 sec)
--授予對TEST資料庫的操作許可權
mysql> GRANT ALL ON test.* TO 'test'@'%';
Query OK, 0 rows affected (0.01 sec)
[root@T400-kelong ~]# mysql -utest -pSystem#2013
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 6
Server version: 5.7.10-log MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> use test
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
mysql> CREATE TABLE client_firms (
-> id INT,
-> name VARCHAR(35)
-> )
-> PARTITION BY LIST (id) (
-> PARTITION r0 VALUES IN (1, 5, 9, 13, 17, 21),
-> PARTITION r1 VALUES IN (2, 6, 10, 14, 18, 22),
-> PARTITION r2 VALUES IN (3, 7, 11, 15, 19, 23),
-> PARTITION r3 VALUES IN (4, 8, 12, 16, 20, 24)
-> );
Query OK, 0 rows affected (0.15 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2063051/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle建立使用者並授權Oracle
- mysql建立使用者並且對資料庫授權MySql資料庫
- vertica建立新使用者並授權
- mysql使用者建立與授權MySql
- MySQL建立使用者和授權MySql
- MySQL建立使用者與授權MySql
- MySql建立使用者及授權MySql
- MySQL建立使用者授權訪問MySql
- Mysql 建立資料庫\新增使用者\使用者授權MySql資料庫
- Linux系統下建立新使用者並且授權Linux
- Oracle建立使用者和授權Oracle
- 多例項MySQL批量新增使用者和密碼並授權MySql密碼
- MongoDB建立只讀使用者並授權指定集合的查詢許可權MongoDB
- mysql 建立新使用者 並賦予許可權MySql
- 使用者建立授權及刪除
- MySQL5.7 實現遠端連線 —— 新增使用者、刪除使用者與授權MySql
- mysql使用者建立、修改、刪除及授權操作的總結MySql
- Oracle建立表空間、建立使用者以及授權Oracle
- Oracle建立使用者並給使用者授權查詢指定表或檢視的許可權Oracle
- MySQL新增使用者使用者與授權MySql
- Oracle建立使用者、角色、授權、建表Oracle
- Oracle建立表空間、建立使用者、授權、授權物件的訪問以及檢視許可權集合Oracle物件
- mysql 授權MySql
- oracle新建使用者,表空間,並授權Oracle
- Oracle 建立表空間、建立使用者以及授權、檢視許可權Oracle
- 微信網頁授權並獲取使用者資訊網頁
- MySQL新增使用者、刪除使用者與授權MySql
- MySQL 語句大全:建立、授權、查詢、修改等MySql
- Oracle11g 建立使用者名稱、授權Oracle
- linux下mysql安裝、授權、建立使用者、連線navicat、連線entityLinuxMySql
- MySQL-授權使用者管理資料庫MySql資料庫
- OneinStack如何配置MySQL遠端連線並授權MySql
- MYSQL 建立賬戶,並賦予許可權MySql
- MySQL新建使用者,授權,刪除使用者,修改密碼MySql密碼
- MySQL 5.7並行複製MySql並行
- MySQL 5.7 並行複製MySql並行
- 5. 建立使用者、授權以及修改密碼等許可權操作密碼
- [Mysql]Mysql5.7並行複製MySql並行