1. mysql忘记密码
vim /etc/my.conf 文件在mysqld下添加skip-grant-tables,表示mysql在登录的时候不检查权限。登录mysql。直接运行mysql> use mysql;
> update user set Password=password('root') where User='root'
> flush privileges;
> qu...
分类:
数据库 时间:
2014-06-03 02:24:16
阅读次数:
283
#servicemysqlstop#servicemysqlstart--skip-grant-tables//跳过授权表启动MySQL服务程序#mysql-uroot//不需要密码登录mysql>updatemysql.usersetpassword=password(‘123456‘)wherehost="localhost";//通过修改mysql库中user表的相关记录重置密码QueryOK,0rowsaffected(0.38..
分类:
数据库 时间:
2014-05-06 16:52:46
阅读次数:
439