linux忘记mysql教程密码找回方法 今天我们主要是讲一下关于linux忘记mysql密码处理方法下面提供了种linux忘记mysql密码找回方法哦
方法一 # /etc/initd/mysql stop # mysqld_safe user=mysql
linux忘记mysql教程密码找回方法
今天我们主要是讲一下关于linux忘记mysql密码处理方法下面提供了种linux忘记mysql密码找回方法哦
方法一
# /etc/initd/mysql stop
# mysqld_safe user=mysql skipgranttables skipnetworking &
# mysql u root mysql
mysql> update user set password=password(newpassword) where user=root;
mysql> flush privileges;
mysql> quit
# /etc/initd/mysql restart
# mysql uroot p
enter password: <输入新设的密码newpassword>
mysql>
方法二
直接使用/etc/mysql/f文件中[client]节提供的用户名和密码:
# mysql udebiansysmaint p
enter password: <输入[client]节的密码>
mysql> update user set password=password(newpassword) where user=root;
mysql> flush privileges;
mysql> quit
# mysql uroot p
enter password: <输入新设的密码newpassword>
mysql>
方法三
这种方法我没有进行过测试因为我的root用户默认密码已经被我修改过了那位有空测试一下把结果告诉我谢谢!!
# mysql uroot p
enter password: <输入/etc/mysql/f文件中[client]节提供的密码>
方法四
方法如下 关闭mysql服务 /etc/initd/mysqld stop 使用 –skipgranttables选项启动mysql服务可以修 改/etc/inind/mysqld脚本启动位置增加此选项 vi /etc/initd/mysqld
方法如下
关闭mysql服务
/etc/initd/mysqld stop
使用 –skipgranttables选项启动mysql服务可以修 改/etc/inind/mysqld脚本启动位置增加此选项
vi /etc/initd/mysqld
在下面运行启动的语句里增加skipgranttables
/usr/bin/mysqld_safe skipgranttables datadir=$datadir socket=$socketfile
logerror=$errlogfile pidfile=$mypidfile
加入skipgranttables的意思是启动mysql服务的时候跳 过权限表认证启动后连接到mysql的root不需要口令
重新启动mysql服务
/etc/initd/mysqld start
修改root用户的密码
mysql> update mysqluser set password=password() where user=root
mysql> flush privileges
mysql> quit
重新启动mysql就可以使用 新密码登录了
mysql
mysql u root –p
输入密码
关闭mysql服务
/etc/initd/mysqld stop
重新修改第步修改的/etc/initd/mysqld使其保持原来不变也就是取消skipgranttables语句
重新 启动mysql服务
/etc/initd/mysqld start
unix