码迷,mamicode.com
首页 > 数据库 > 详细

ubuntu下 mysql安装以后无法登陆的的解决方法((ERROR 1698 (28000): Access denied for user 'root'@'localhost'))

时间:2018-07-07 12:35:39      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:apple   sele   int   lin   exit   gre   nbsp   client   无法登录   

 


1. 删除mysql

 

 

sudo apt-get autoremove --purge mysql-server-5.0

 

sudo apt-get remove mysql-server

sudo apt-get autoremove mysql-server

sudo apt-get remove mysql-common 

 

 

2. 清理残留数据
dpkg -l |grep ^rc|awk ‘{print $2}‘ |sudo xargs dpkg -P

 

 

 


3. 安装 mysql

 

 

sudo apt-get install mysql-server
sudo apt-get install mysql-client
 
4 解决普通用户无法登录的问题:
sudo mysql -u root -p
select user, plugin from mysql.user;
update mysql.user set authentication_string=PASSWORD(‘newPwd‘), plugin=‘mysql_native_password‘ where user=‘root‘;
flush privileges;
exit
重新进入
 

ubuntu下 mysql安装以后无法登陆的的解决方法((ERROR 1698 (28000): Access denied for user 'root'@'localhost'))

标签:apple   sele   int   lin   exit   gre   nbsp   client   无法登录   

原文地址:https://www.cnblogs.com/Lin-Yi/p/9276710.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!