溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理

發(fā)布時(shí)間:2020-06-01 17:12:48 來源:網(wǎng)絡(luò) 閱讀:245 作者:三月 欄目:MySQL數(shù)據(jù)庫(kù)

本篇文章給大家主要講的是關(guān)于Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理的內(nèi)容,感興趣的話就一起來看看這篇文章吧,相信看完Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理對(duì)大家多少有點(diǎn)參考價(jià)值吧。 

Mysql用戶管理

新建用戶

mysql -u root -p    //登錄mysql

use mysql;        //進(jìn)入數(shù)據(jù)庫(kù)mysql
命令格式 create user  'username'@'localhost'  identified by 'password'

使用密文作為用戶密碼

select password(123123);

Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理

查看用戶

use mysql;         //進(jìn)入數(shù)據(jù)庫(kù)mysql  
select user,authentication_string,host from user;     //查看用戶

刪除用戶
> drop user 'abc'@'localhost';        //刪除用戶abc
重命名用戶
> rename user 'abc'@'localhost' to 'msq'@'localhost';
 (//將用戶abc 重命名為 msq)
設(shè)置密碼
 > set password=password('123456');
   (設(shè)置當(dāng)前用戶密碼為123456)
 > set password for 'abc'@'localhost'=password('abc123');
  (//設(shè)置其他用戶abc的密碼為abc123)
使用Mysql時(shí)忘記root用戶密碼的解決辦法
1.關(guān)閉數(shù)據(jù)庫(kù)
 systemctl stop mysqld.service    //關(guān)閉mysql服務(wù)
2.使用mysqld --skip-grant-tables啟動(dòng)數(shù)據(jù)庫(kù)
mysqld --skip-grant-tables  //啟動(dòng)Mysql
3.啟動(dòng)后需要在開一個(gè)終端登入Mysql,使用update修改root密碼。
 source /etc/profile        //刷新下環(huán)境變量        
 mysql                           //進(jìn)入數(shù)據(jù)庫(kù)
> update mysql.user set authentication_string=password ('123123') where user='root';   
 (//修改mysql庫(kù) user表 root用戶的密碼為123123)
4:刷新數(shù)據(jù)庫(kù)
    > flush privileges;    //刷新數(shù)據(jù)庫(kù)
5:使用新密碼登錄測(cè)試

mysql -u root -p 123123

以上關(guān)于Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理詳細(xì)內(nèi)容,對(duì)大家有幫助嗎?如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI