Contos7中Mysql忘记密码或者初始登录时密码错误解决方法
Posted 山乀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Contos7中Mysql忘记密码或者初始登录时密码错误解决方法相关的知识,希望对你有一定的参考价值。
Contos7中mysql忘记密码或者初始登录时密码错误解决方法
1、先停止mysql服务
service mysqld stop
2、修改mysql的配置文件,通过下面命令,进入配置文件当中
vim /etc/my.cnf
在文件末尾加上
skip-grant-tables
3、重启mysql服务,
service mysqld start
4、进入数据库(输入密码时,直接回车即可)
mysql -u root -p
5、重置mysql密码
update mysql.user set password=password('123456') where user='root';
根据版本不同,如果执行上述语句报错,Unkown column “password”in “field list”,原因是新的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string,此时需要将上述语句改为如下所示 :
update mysql.user set authentication_string=password('123456') where user='root'and host='localhost';
6、密码改成功后,需将skip-grant-tables给删除掉。
vim /etc/my.cnf 进行删除
7、重启mysql服务
service mysqld restart
8、输入密码,正常登录mysql即可
(--1--)在Linux环境下忘记mysql密码处理方法
概述:
在生产环境中,针对mysql数据库服务我都需要对权限控制及密码控制,主要防止任意主机、任意用户恶意登录操作,但是有些时候我们做了这些安全策略工作,也会出现忘记密码,或者密码被人恶意修改,现在所说的情况都有可能发生的,那出现这些异常问题我应该怎么处理你?下面说说mysql密码初始化的方法:
MySQL密码初始化恢复方法(1)--通过my.cnf配置文件跳过授权表登录方法
1.停止mysql服务(建议先停止mysql服务)
# service mysqld stop
2.修改my.cnf配置文件加入"skip-grant-tables"选项
# vim /etc/mysql/my.cnf [mysqld] skip-grant-tables
3.启动mysql服务
# service mysqld start
4.登陆mysql修改root密码
mysql > USE mysql; mysql > UPDATE user SET Password = password(‘gzsamlee-mysql‘) WHERE User = ‘root‘; mysql > FLUSH PRIVILEGES;
5.在my.cnf配置文件中删除或注释"skip-grant-tables"选项
# vim /etc/mysql/my.cnf [mysqld] #skip-grant-tables
6.重启mysql服务即可生效新的密码
# service mysqld restart
MySQL密码初始化恢复方法(2)--通过启动服务跳过授权表登录方法
1.停止mysql服务
# service mysqld stop
2.修改配置文件 加入--skip-grant-tables --skip-networking
# vim /etc/init.d/mysqld $bindir/mysqld_safe --skip-grant-tables --skip-networking --datadir="$datadir" --pid-file="$mysqld_pid_file_path" $other_args >/dev/null 2>&1 & wait_for_pid created "$!" "$mysqld_pid_file_path"; return_value=$?
3.启动mysql服务
# service mysqld start
4.修改管理员密码
mysql > USE mysql; mysql > UPDATE user SET Password = password(‘gzsamlee-mysql‘) WHERE User = ‘root‘; mysql > FLUSH PRIVILEGES;
5.停止mysql服务
# service mysqld stop
6.修改配置文件 去掉--skip-grant-tables --skip-networking
# vim /etc/init.d/mysqld $bindir/mysqld_safe --datadir="$datadir" --pid-file="$mysqld_pid_file_path" $other_args >/dev/null 2>&1 & wait_for_pid created "$!" "$mysqld_pid_file_path"; return_value=$?
7.启动mysql服务
# service mysqld start
本文出自 “Opensamlee” 博客,请务必保留此出处http://gzsamlee.blog.51cto.com/9976612/1792941
以上是关于Contos7中Mysql忘记密码或者初始登录时密码错误解决方法的主要内容,如果未能解决你的问题,请参考以下文章