您好,登錄后才能下訂單哦!
下文給大家帶來關于mysql授權更改密碼的簡單步驟,感興趣的話就一起來看看這篇文章吧,相信看完mysql授權更改密碼的簡單步驟對大家多少有點幫助吧。
mysql 更改密碼
update mysql.user set authentication_string=password('123456') where user='root';
提示報錯密碼長度問題
mysql> set global validate_password_policy=0;
mysql> set global validate_password_length=1;
mysql授權
授權用戶所有權限
grant all on . to '用戶'@"%" identified by "密碼";
grant alter,insert,select,delete,update,create,drop on . to '用戶'@"%" identified by "密碼";
FLUSH PRIVILEGES;
grant update,insert,select,create,DELETE on nad.* to 'svsadmin'@"%";
授權查詢權限
grant select on . to 用戶@"%" identified by "密碼";
撤銷drop權限
revoke drop on . from '用戶'@"%";
mysql查看用戶列表
mysql> select host,user from mysql.user;
查詢授權用戶權限
show grants for 用戶名;
刪除賬戶及權限
drop user 用戶名@'%';
看了以上關于mysql授權更改密碼的簡單步驟詳細內容,是否有所收獲。如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。