MYSQL grant 與 修改使用者密碼

來源:互聯網
上載者:User

標籤:mysql 修改使用者密碼   授權 grant   

 MYSQL 建立使用者,並授權,修改密碼。


建立使用者並將所有許可權,授權給LAW

create user [email protected];

 grant all privileges on *.* to [email protected] identified by "";   ----OK


建立本機使用者空密碼,並授予相關選擇,更新等許可權,且只能作用於mysql資料庫。

create user [email protected];

grant select,update,insert on mysql.* to [email protected] identified by "";

 

更改LAW的密碼

mysql> set password for [email protected] = "123.law";

ERROR 1372 (HY000): Password hash should be a 41-digit hexadecimal number

  當直接輸入123.law密碼時會提示一個錯誤,這裡你需要將密碼轉換為16進位。

命令為:

select password("123.law");


mysql> select password(‘123.law‘);

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

| password(‘123.law‘)                       |

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

| *2FFDFCDC4937DB95AC813D3962BECF39B3D78BE3 |

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

1 row in set (0.00 sec)

   得到一串16進位密碼後,再次執行命令:

******************************************************************************************** 

*   set password for [email protected] = "*2FFDFCDC4937DB95AC813D3962BECF39B3D78BE3";         *

*******************************************************************************************




以下為在執行phpmyadmin 時官方MYSQL執行命令:

REVOKE ALL PRIVILEGES ON * . * FROM ‘lisa‘@‘%‘;


REVOKE GRANT OPTION ON * . * FROM ‘lisa‘@‘%‘;


GRANT SELECT , 

INSERT ,

UPDATE ,

DELETE ON * . * TO ‘lisa‘@‘%‘ WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;


本文出自 “霸王別集” 部落格,請務必保留此出處http://zhangtainren.blog.51cto.com/448826/1539386

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.