Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法

1. 打开/etc/my.cnf mysql配置文件,在[mysqld]下添加一行skip-grant-tables,即可在登录mysql时不用密码验证
Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法
文章图片


2. 重启mysql服务,执行service mysqld restart

3. 进到mysql bin目录下,执行./mysql -uroot -p 回车,此时提示输入密码,直接按回车键就登录mysql成功了。
Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法
文章图片

【Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法】
4. 登录成功重置mysql密码,执行update mysql.user set password=password('你的密码') where user='root';
(根据版本不同,如果执行上述语句报错,Unkown column “password”in “field list”,
新的mysql数据库下已经没有password这个字段了,password字段改成了

authentication_string,此时需要将上诉语句改为update mysql.user set authentication_string=password('你的密码') where user='root';

) 重置root密码,密码重置为你需要的密码,实际应用中建议密码设置越复杂越好,建议至少包含大小写字母,数字等,刷新权限即可


Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法
文章图片

5. 特别提醒:密码改成功后,需将skip-grant-tables给注释掉,否则他人登录该数据库都不需要密码验证了。vi /etc/my.cnf 进行配置注释,并重启mysql,执行service mysqld restart
Linux初次登陆、重置MySQL密码步骤,以及错误Unknown column 'password' in 'field list'的解决方法
文章图片


6. 在mysql bin目录下执行./mysql -uroot -p登录,输入之前修改的密码即可登录






    推荐阅读