红联Linux门户
Linux帮助

mysql修改root密码 admin数据库消失解决方法

发布时间:2016-01-16 10:32:40来源:linux网站作者:selaginella

由于是php的集成环境安装的mysql密码为空,所以想改个密码,使用sql语句:update user set password=‘root' where user='root'; 修改mysql数据库下的user表,导致修改完成后mysql数据库消失,而且修改后的密码也无效,最后在网上找到结果,是不能直接修改密码,是要用password()函数修改的,如果出现这种情况的话,可以用下面的办法解决:


修改mysql数据库目录配置文件:my.cnf(或my.ini)
[mysqld]下添加:

skip-grant-tables

重启mysql服务,然后用mysql 登录。

进入后,可以看到,mysql数据库已呈现,然后修改密码:

update user set password=password('root') where user='root';

flush privileges;

退出mysql,修改配置文件my.cnf 把刚才的skip-grant-tables注释掉。

重启mysql服务,然后就可以用用户名,密码登录。


Linux-mysql忘记root密码:http://www.linuxdiyf.com/linux/13838.html

Ubuntu下MySQL忘记root密码重置:http://www.linuxdiyf.com/linux/13666.html

Ubuntu15.04下MySQL5.6安装过程:http://www.linuxdiyf.com/linux/13250.html

Ubuntu 15.04安装配置Apache和mysql的方法:http://www.linuxdiyf.com/linux/13074.html

关于MySQL密码你应该知道的那些事:http://www.linuxdiyf.com/linux/12965.html