mysql命令怎麼,資料庫設定密碼

更新时间: 2025-01-22 11:23:50

最佳答案

mysql設定資料庫密碼常用的有四種方法:

1.用root登陸MySQL終端 mysql&setpassword=password(‘raykaeso‘); mysql&flushprivileges;

2.在MySQL終端中使用GRANT語句 mysql&grantallon*.*to‘root’@’localhost’IDENTIFIEDBY‘raykaeso’withgrantoption; mysql&flushprivileges;

3.在MySQL庫user表中直接修改 mysql&usemysql; mysql&updateusersetpassword=password(‘raykaeso’)whereuser=’root; mysql&flushprivileges; 4、在shell命令列裡修改MySQL使用者密碼 [root@raykaeso?leixuesong]mysqladmin-urootpassword“yourpassword”;