真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

本篇文章給大家主要講的是關(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用戶管理

新建用戶

mysql -u root -p    //登錄mysql

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

使用密文作為用戶密碼

select password(123123);

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

查看用戶

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

mysql -u root -p 123123

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


當(dāng)前標題:Mysql數(shù)據(jù)庫如何實現(xiàn)用戶管理
文章鏈接:http://weahome.cn/article/jpoiei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部