主頁 > 知識庫 > MySql Error 1698(28000)問題的解決方法

MySql Error 1698(28000)問題的解決方法

熱門標(biāo)簽:ps制作地圖標(biāo)注gif 地圖標(biāo)注人員兼職 電子地圖標(biāo)注電話 聊城智能外呼系統(tǒng)運營商 成都優(yōu)派外呼系統(tǒng) 寧波企業(yè)外呼系統(tǒng)收費 沈陽電銷外呼系統(tǒng)原理是什么 扎樣申請400電話 上海智能外呼系統(tǒng)代理商

一,問題描述:

MysqlERROR1698(28000)解決,新裝了mysql-server-5.7,登錄為這一問題,普通用戶不能進(jìn)mysql,只有root用戶才能進(jìn),并且不需要任何密碼。

~$ mysql -u root -p
Enter password: 
ERROR 1698 (28000): Access denied for user 'root'@'localhost'

二,解決步驟:

停止mysql服務(wù)

~$ sudo service mysql stop

以安全模式啟動MySQL

~$ sudo mysqld_safe --skip-grant-tables 

MySQL啟動之后就可以不用密碼登陸了

~$ mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.10 MySQL Community Server (GPL) 

查看一下user表,錯誤的起因就是在這里, root的plugin被修改成了auth_socket,用密碼登陸的plugin應(yīng)該是mysql_native_password。

mysql> select user, plugin from mysql.user;
+-----------+-----------------------+
| user   | plugin        |
+-----------+-----------------------+
| root   | auth_socket      |
| mysql.sys | mysql_native_password |
| dev    | mysql_native_password |
+-----------+-----------------------+
strong>3/strong> rows in set (strong>0.01/strong> sec)

關(guān)于auth_socket,在官方有說明: https://dev.mysql.com/doc/mysql-security-excerpt/5.5/en/socket-authentication-plugin.html ,反正現(xiàn)在暫時不用它, 那就把這里改了。

mysql> update mysql.user set authentication_string=PASSWORD('newPwd'), plugin='mysql_native_password' where user='root';
Query OK, strong>1/strong> row affected, strong>1/strong> warning (strong>0.00/strong> sec)
Rows matched: strong>1/strong> Changed: strong>1/strong> Warnings: strong>1/strong>
mysql> flush privileges;
Query OK, strong>0/strong> rows affected (strong>0.00/strong> sec)

重啟服務(wù),問題就解決了

~$ sudo service mysql stop
...
 * MySQL Community Server 5.7.10 is stopped
~$ sudo service mysql start
..
 * MySQL Community Server 5.7.10 is started
~$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.10 MySQL Community Server (GPL)

以上所述是小編給大家介紹的MySql Error 1698(28000)問題的解決方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • Linux下剛安裝完mysql修改密碼的簡單方法
  • CentOS 6.6 源碼編譯安裝MySQL 5.7.18教程詳解
  • CentOS 7中MySQL連接數(shù)被限制為214個的解決方法
  • 通過案例分析MySQL中令人頭疼的Aborted告警
  • 解決MySQL中IN子查詢會導(dǎo)致無法使用索引問題
  • MySQL交換分區(qū)的實例詳解

標(biāo)簽:三明 朔州 咸寧 林芝 內(nèi)江 汕頭 宿州 AXB

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySql Error 1698(28000)問題的解決方法》,本文關(guān)鍵詞  MySql,Error,1698,28000,問,題的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MySql Error 1698(28000)問題的解決方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySql Error 1698(28000)問題的解決方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章