您好,登錄后才能下訂單哦!
本篇文章給大家主要講的是關(guān)于Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理的內(nèi)容,感興趣的話就一起來看看這篇文章吧,相信看完Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理對(duì)大家多少有點(diǎn)參考價(jià)值吧。
mysql -u root -p //登錄mysql
use mysql; //進(jìn)入數(shù)據(jù)庫(kù)mysql
命令格式 create user 'username'@'localhost' identified by 'password'
使用密文作為用戶密碼
select password(123123);
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)
> set password=password('123456'); (設(shè)置當(dāng)前用戶密碼為123456) > set password for 'abc'@'localhost'=password('abc123'); (//設(shè)置其他用戶abc的密碼為abc123)
systemctl stop mysqld.service //關(guān)閉mysql服務(wù)
mysqld --skip-grant-tables //啟動(dòng)Mysql
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)
> flush privileges; //刷新數(shù)據(jù)庫(kù)
mysql -u root -p 123123
以上關(guān)于Mysql數(shù)據(jù)庫(kù)如何實(shí)現(xiàn)用戶管理詳細(xì)內(nèi)容,對(duì)大家有幫助嗎?如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。
免責(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)容。