mysql已经安装完毕,但安装过程没有让你填写密码,链接错误,那么就来看看以下命令吧
1.首先获取root权限
anderyly@anderyly-PC:~*su
2.检查mysql是否已运行
root@anderyly-PC:~#netstat -tap | grep mysql
3.查询默认的用户名和密码,user是用户名,password后面的是密码
root@anderyly-PC:~#vim /etc/mysql/debian.cnf
4.利用默认账号密码登录
mysql -u debian-sys-maint -pBIDVYLyCzwpNgK4H
5.更改密码设置
update mysql.user set plugin="mysql_native_password" where user="root";
6.设置root的密码
update mysql.user set authentication_string=password('这里是你的密码') where user='root'and Host = 'localhost';
7.退出数据库
exit;
8.重启mysql
root@anderyly-PC:~#service mysql restart
评论 (0)