Home  >  Article  >  Backend Development  >  为什么小弟我的mysql没有mysql-nt.exe

为什么小弟我的mysql没有mysql-nt.exe

WBOY
WBOYOriginal
2016-06-13 13:13:371339browse

为什么我的mysql没有mysql-nt.exe
我用的是appserv

------解决方案--------------------
关闭mysqld 
命令行执行 mysqld --skip-grant-tables 然后 没有密码登录 然后修改帐号密码

use mysql;
UPDATE user SET Password = password ( ‘newpasswd’ ) WHERE User = ‘root’;
flush privileges;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn