MySQL安装后无法用root用户访问的问题
今天在换了Ubuntu后装个本地的mysql,安装过程没什么好说的:sudo apt-get install mysql-server
安装好了之后我做了以下一系列常规动作:
1.$sudo mysql -----------进入mysql
2.grant all privileges on *
.* to 'root'@'localhost' identified by 'xxxx' ---------------------赋权设密码
3.exit
4.mysql -u root -p xxxx ---------------通过用户密码登录
此时问题来了:ERROR 1698 (28000): Access denied for user 'root'@'localhost
好吧,一波常规检查:
1.ping xx.xxx.xx -----------检查网络
2.nmap xx.xxx.xx -----------------检测端口是否开放
一切正常。。。。。。继续
3.$sudo mysql ---------------通过root权限进入mysql
4.select user,host,password from user; ------------------查看下用户表
问题来了:password 字段不存在。。。 百度一番(authentication_string 替换了password)
5.select user,host,authentication_string from user; -----------------再次查看用户表
此时会发现root账号下没有密码!!!(回过头看看,之前我似乎设置了密码的~)继续!
6.select user,host,authentication_string,plugin from user; ---------------------再次仔细查看用户表!
此时有所发现:root下plugin 为auth_socket 而非:mysql_native_password
问题找到了,那么接下来我们有2中改法:
1.修改这个值
2.新建一个用户作为登录用户,并给予所有权限
在实际处理中出于安全性考虑,我选择了新建一个用户的方式:grant all privileges on *
.* to 'xxx'@'localhost' identified by 'xxxx' ;
做完上述操作后,退出mysql
然后使用:mysql -u xxx -p xxxx -------------------成功进入!(问题解决)