程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法

ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法

編輯:MySQL綜合教程

ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法。本站提示廣大學習愛好者:(ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法)文章只能為提供參考,不一定能成為您想要的結果。以下是ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法正文


ubuntu系統中Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題的解決方法

作者:Agoly

這篇文章主要介紹了ubuntu系統安裝mysql登陸提示 解決Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題,需要的朋友可以參考下

第一種方式:

skip-grant-tables:非常有用的mysql啟動參數

介紹一個非常有用的mysql啟動參數—— --skip-grant-tables。顧名思義,就是在啟動
mysql時不啟動grant-tables,授權表。有什麼用呢?當然是忘記管理員密碼後有用。

以命令行參數啟動mysql:# /usr/bin/mysqld_safe --skip-grant-tables &

3、修改管理員密碼:

use mysql;

update user set password=password('yournewpasswordhere') where user='root'; flush privileges; exit;

4、殺死mysql,重啟mysql.

然後就可以直接登錄

方法2:

查看mysql安裝的路徑

然後我們更改root用戶的密碼,

查看默認密碼先

然後直接登錄

然後再更改root默認用戶名和密碼

GRANT ALL PRIVILEGES on *.* to 'root'@'localhost' identified by '密碼';
flush privileges;

  mysql>update mysql.user set password=password('新密碼') where User="test" and Host="localhost";

  mysql>flush privileges;

  mysql>delete from user where User='root' and Host='localhost';

  mysql>flush privileges;

mysql>grant select,delete,update,create,drop on *.* to test@"%" identified by "1234";

mysql> UPDATE user SET Host='127.0.0.1' WHERE User='root' AND Host='localhost';

mysql> flush privileges;

把Grant_priv修改為‘Y'即可(flush privileges;(執行該語句或重啟MySQL後生效)),update mysql.user set Grant_priv='Y' where user='ptmind';

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved