您好,登錄后才能下訂單哦!
下文內容主要給大家帶來修改mysql數據庫密碼簡析,這里所講到的知識,與書籍略有不同,都是億速云專業技術人員在與用戶接觸過程中,總結出來的,具有一定的經驗分享價值,希望給廣大讀者帶來幫助。
mysql修改數據庫密碼:
5.7版本數據庫在安裝時日志中會顯示密碼
cat /var/log/mysqld.log | grep password
登錄時提示修改密碼:
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
簡單密碼不可以設置:
mysql> alter user 'root'@'localhost' identified by '123456';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql>
修改數據庫密碼設置,簡單密碼也可以用
set global validate_password_policy=0;
set global validate_password_length=1;
設置為簡單密碼:
alter user 'root'@'localhost' identified by '111111';
密碼忘記了:
修改配置文件/etc/my.cnf刪除或禁用skip-grant-tables這行。
注:mysql的數據庫老版本用參數authentication_string,新版本用參數password
update user set authentication_string=password('123456') where user='root';
update user set password=password('123456') where user='root';
flush privileges; --刷新系統權限表
用工具登錄時報錯
ERROR 1130: Host 192.168.3.100 is not allowed to connect to this MySQL server
select Host,User from user where user='root';
update user set host = '%' where user ='root';
flush privileges;
再次登錄就可以了
對于以上關于修改mysql數據庫密碼簡析,如果大家還有更多需要了解的可以持續關注我們億速云的行業推新,如需獲取專業解答,可在官網聯系售前售后的,希望該文章可給大家帶來一定的知識更新。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。