mysql dba系統學習(15)mysql使用者管理之二

來源:互聯網
上載者:User

mysql使用者管理

一,建立和刪除使用者

mysql> select current_user();  查詢當前的登入使用者

+----------------+

| current_user() |

+----------------+

| root@localhost |

+----------------+

 建立使用者的時候沒有分配任何許可權,%表示的是任何機器,但是不包括localhost和127.0.0.1

mysql> create user 'chenzhongyang'@'%' identified by '123456';

mysql> create user 'chen'@'127.0.0.1' identified by '123456';

刪除使用者

mysql> drop user 'chenzhongyang'@'%';

Query OK, 0 rows affected (0.04 sec)

[root@test4 /]# mysql -uchen -p123456 -h127.0.0.1

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 4

Server version: 5.1.70-log Source distribution

Copyright (c) 2000, 2013, 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> select  user();

+----------------+

| user()         |

+----------------+

| chen@localhost |

+----------------+

1 row in set (0.01 sec)

剛剛建立的使用者的許可權是usage

mysql> show  grants;

+-------------------------------------------------------------------------------------------------------------+

| Grants for chen@127.0.0.1                                                                                   |

+-------------------------------------------------------------------------------------------------------------+

| GRANT USAGE ON *.* TO 'chen'@'127.0.0.1' IDENTIFIED BY PASSWORD '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9' |

+-------------------------------------------------------------------------------------------------------------+

1 row in set (0.02 sec)

修改使用者名稱,這個時候密碼和許可權沒有變化

mysql> rename  user 'chen'@'127.0.0.1'  to 'chenzhongyang'@'127.0.0.1';

二,匿名使用者

建立匿名使用者之後,那麼任何機器的任何使用者都可以登入到mysql,所以這樣很危險

mysql> insert into user(host,user,password) values('%','','');

Query OK, 1 row affected, 3 warnings (0.17 sec)

mysql> flush privileges;   重新整理許可權將重新載入user表的內容

Query OK, 0 rows affected (0.03 sec)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.