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

Posted 稀里糊涂林老冷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下 mysql安装以后无法登陆的的解决方法((ERROR 1698 (28000): Access denied for user 'root'@'localhos相关的知识,希望对你有一定的参考价值。

 


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'@'localhos的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu下开启mysql远程登陆权限

putty 无法登陆Ubuntu系统解决办法

linux下安装mysql默认root无法登陆问题

Ubuntu下安装MySQL

虚拟机装ubuntu登陆界面里输入密码后不能进入系统!

Ubuntu下的的Mysql