您好,登錄后才能下訂單哦!
1、修改登錄設置
vim /etc/my.cnf #或/etc/mysql/my.cnf [mysqld] skip-grant-tables #新加
2、重啟mysql服務
3、直接mysql登錄,并修改密碼
update mysql.user set authentication_string=password("新密碼") where User='root'; #5.7中保存密碼字段是這個,desc先看下保存密碼字段。其他版本一般如下修改 #mysql> UPDATE mysql.user SET Password = password ('new-password') WHERE User = 'root' ; #如遇到報錯 You must reset your password using ALTER USER statement before executing this statement. 原因是要修改密碼或密碼有效期已到,需要執行 1. alter user user() identified by "123456" ;修改密碼后一般就解決問題,不行的話看下面的步驟 2. ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER; #設置密碼永不過期,改回默認方法 alter user 'root'@'localhost' password expire default 3. 或者 set global default_password_lifetime=0 或直接寫在配置文件里面,過期時間為0表示永不過期,全局生效。推薦上中方法僅特定用戶密碼不過期 flush privileges; #使用update修改密碼必須要執行此步 或者#經測試加skip-grant-tables不能執行以下操作 set password=passwprd('新密碼');#不須刷新授權表,完整格式 SET PASSWORD FOR 'root'@'localhost'=PASSWORD('newpassword');
4、修改配置文件
刪除
skip-grant-tables
重啟服務
方法二:
停止mysql服務
使用--skip-grant-tables啟動數據庫,忽略授權登錄驗證
mysqld_safe --skip-grant-tables --user=mysql & mysql #登錄后修改密碼,多實例要加-S "SOCKET"
3.關閉數據庫,重新啟動
mysqladmin -uroot -p'newpassword' shutdown #關閉,或用kill,pkill殺掉
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。