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