MYSQL ERROR 1045 錯誤的解決辦法

2021-04-26 13:54:39 字數 622 閱讀 2653

error 1045 (28000): access denied for user'root'@'localhost'

(using password:yes)

第一步:開啟開始裡mysql

的mysql command line client 輸入你的密碼[就是安裝時設的那個]%

第二步:在mysql>後輸入:update mysql.user set password = old_password('密碼')

第三步:在提示符-> 後輸入:where host = 'localhost' and user = '使用者名稱';

rows matched: 0 changed: 0 warnings: 0

別以為完了,還有

啟動mysql服務,登入到mysql資料庫,輸入

命令為:

[root @localhost root]# /usr/bin/mysql -u root -p 

(依據lniux版本相容問題,-p 後面輸入的內容將有所不同)

-p:資料庫

管理員root的密碼 (一般輸入該密碼)

-p: 指定將使用的資料庫名  

MYSQL ERROR 1045 錯誤的解決辦法

第一步 開啟開始裡mysql的mysql command line client 輸入你的密碼 就是安裝時設的那個 第二步 在mysql 後輸入 update mysql.user set password old password 密碼 第三步 在提示符 後輸入 where host localh...

make menuconfig錯誤的解決辦法

如果使用make menuconfig的方式配置核心,又碰巧系統沒有安裝ncurses庫 ubuntu系統 預設就沒有安裝此庫 就會出現錯誤,錯誤資訊大體上如下 unable to find the ncurses libraries or the required header files.mak...

MySQL1045錯誤的解決方法

今天莫名其妙資料庫就忽然連不上去了,報了如上錯誤,查了查才知道出現這個錯誤本質原因就是使用者密碼出現了錯誤。一 修改my.ini配置檔案 1 首先找到mysql安裝路徑下的my.ini檔案,用記事本的方式開啟,2 開啟後,找到mysqld這個位置,3 在 mysqld 底下新增語句 skip gra...