mysql登入出問題

2021-07-25 11:29:50 字數 741 閱讀 3148

剛剛接觸mysql時可能會出現這樣的問題:

當cmd中輸入mysql -u root -p後會出現以下問題:

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

可以這樣做,先找到mysql bin目錄下的my.ini檔案開啟編輯,並在[mysql]下面加上skip-grant-tables,用於跳過密碼問題,但是這並不能徹底解決。 2

重啟mysql服務

進入資料庫,重置密碼。

mysql -u root -p         enter

不用管password          enter

mysql> use mysql;      enter

mysql> update user set password=password("新密碼") where user="root";   (密碼自己設)

mysql> flush privileges;      重新整理資料庫

mysql> quit;

修改my.ini ,注釋掉skip-grant-tables(以防下次出問題)

儲存退出

重啟mysql服務(步驟二)。

MySQL登入問題

通過解壓檔案方式安裝mysql,登入時使用mysql uroot p 提示error 1045 28000 access denied for user localhost using password no 解決方案 通過service.msc關閉正在執行的mysql服務。開啟dos視窗,轉到my...

mysql 登入問題

windows環境登入安裝的mysql出現 access denied for users root localhost using password yes 進入mysql安裝目錄下的my.ini檔案中,在mysqld中加入 skip grant tables意思是跳過許可權直接登入然後重啟mys...

MySQL登入問題

資料庫作為運維重要的一環,值得我們深入學些習,夯實基礎也尤為重要,本文就介紹了mysql的基礎內容。mysql安裝完成後,預設是root使用者 需要先設定一下密碼,命令如下 mysqladmin uroot password 123123 123123為密碼填寫位置mysql u 指定使用者 p密碼...