本篇文章給大家主要講的是關(guān)于MySQL數(shù)據(jù)庫如何實現(xiàn)用戶管理的內(nèi)容,感興趣的話就一起來看看這篇文章吧,相信看完Mysql數(shù)據(jù)庫如何實現(xiàn)用戶管理對大家多少有點參考價值吧。
成都創(chuàng)新互聯(lián)2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元吳川做網(wǎng)站,已為上家服務(wù),為吳川各地企業(yè)和個人服務(wù),聯(lián)系電話:028-86922220
mysql -u root -p //登錄mysql
use mysql; //進入數(shù)據(jù)庫mysql
命令格式 create user 'username'@'localhost' identified by 'password'
使用密文作為用戶密碼
select password(123123);
use mysql; //進入數(shù)據(jù)庫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 //啟動Mysql
source /etc/profile //刷新下環(huán)境變量 mysql //進入數(shù)據(jù)庫 > update mysql.user set authentication_string=password ('123123') where user='root'; (//修改mysql庫 user表 root用戶的密碼為123123)
> flush privileges; //刷新數(shù)據(jù)庫
mysql -u root -p 123123
以上關(guān)于Mysql數(shù)據(jù)庫如何實現(xiàn)用戶管理詳細內(nèi)容,對大家有幫助嗎?如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。