您好,登錄后才能下訂單哦!
MySQL的用戶管理是怎樣的,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
mysql安裝后的一點安全策略就是刪除空用戶和host不為localhost的用戶
1、刪除空用戶
刪除空用戶
mysql> select mysql.user,host,password from user whereuser=''; 查詢用戶
mysql> delete from user where user=''; #刪除user=空的用戶
刪除host不等于localhost的用戶
mysql> select user,host,password from user where host!='localhost';
mysql>delete from user where host!=’localhost’;
2、為用戶設(shè)置密碼
mysql> update user set password=password(123456);
mysql>flush privileges;
創(chuàng)建mysql用戶及賦予用戶權(quán)限
1.創(chuàng)建用戶并設(shè)置密碼
mysql>create user acbuf@’localhost’ identified by‘123456’;
mysql>create user acbuf@’localhost’;
2.常用的創(chuàng)建用戶方法;創(chuàng)建用戶的同時并進(jìn)行授權(quán) grant
mysql> grant all on blog.* to 'acbuf'@'localhost' identified by '123456'; #不會自動創(chuàng)建blog庫
3.為已有用戶授權(quán)庫。
mysql> grant all on blog.* to acbuf@'localhost';
4.查看用戶權(quán)限
mysql>show grants for acbuf@’localhost’;
5.root密碼忘記重新設(shè)置密碼
1.編輯/etc/my.cnf在[mysqld]段中添加skip-grant-tables,然后重啟mysqld。
然后mysql進(jìn)入即可,然后update為root設(shè)置密碼
,設(shè)置完成后把添加的skip-grant-tables刪除重啟即可。
2.[root@test /]# mysqld_safe--skip-grant-tables --user=mysql &
后續(xù)步驟跟第一個方法一樣。
關(guān)于MySQL的用戶管理是怎樣的問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。