忘记root密码怎么办:
1.关闭数据库
2.使用-->mysqld_safe --skip-grant-tables &--<启动数据库
3.使用空密码进入数据库(mysql命令后直接回车)
4.使用update语句修改root密码,然后刷新权限表
5.关闭数据库并重新以正常方式启动数据库
操作步骤如下:
#service mysql stop
#mysqld_safe --skip-grant-tables &
#service mysql start
#mysql
mysql> update mysql.user set Password=password('new_password') where User='root';
mysql> flush privileges;
mysql> quit
#service mysql restart
相关文章
- mysql 忘记root 密码的解决方法
- Linux下如何彻底删除MySQL
- 在Linux系统下安装大于mysql5.5版本的数据库
- MAC下的mysql忘记密码该怎么办??
- Linux 下 Nginx + JDK + Tomcat + MySQL 安装指南
- Linux/CentOS下的CST和UTC时间的区别以及不一致的解决方法
- CentOS下php使用127.0.0.1不能连接mysql的解决方法
- Windows下Mysql5.7忘记root密码的解决方法
- 关于Linux 下 Mysql 远程访问时出现的Access denied for user '用户名'@'IP地址' (using password:NO)
- linux mysql root密码重置