MySQL重装-cannot create windows service for mysql

这是一个经常会用到的问题,有时候需要重新安装mysql,在最后一步的时候就会出现这一错误。

删除mysql

停止MySQL

1、控制面板--添加删除程序中卸载MySQL

2、到安装目录删除MySQL

3、删除:C:\Documents andSettings\All Users\Application Data\MySQL

4、查看注册表:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services


最后一个就是保险点就是通过搜索,mysql,然后删除。

以上我们经常做的,但是我这重装,进行配置的时候出现了

重装mysql

cannot create windows service for mysql
MySQL重装-cannot create windows service for mysql_第1张图片

解决方法其实很简单,找了找原因,是因为服务中还有mysql的服务。

1、ctrl+r-->cmd-->services.msc-->找到mysql服务,停止服务
MySQL重装-cannot create windows service for mysql_第2张图片

2、管理员的cmd,sc delete mysql,这个mysql是你安装的时候自定义的名字,我的是mysql51,不然会报错。
MySQL重装-cannot create windows service for mysql_第3张图片

提示你成功后,在配置页面返回上一步,再下一步,就可以安装成功了。

验证mysql

同样通过命令行进行验证
MySQL重装-cannot create windows service for mysql_第4张图片
这样基本上就是成功啦。。congratulation。。

以后像这样删除安装会很多,每次都不用再回忆,直接来参考就行。。

问题1:1045 access denied for user 'root'@'localhost' using password yes
MySQL重装-cannot create windows service for mysql_第5张图片
解决方案:

1 mysql my.ini 'skip-grant-tables' ,保存并关闭文件;

2、重启MYSQL 服务;

3 'mysql-uroot-p

4 use mysql,使用mysql数据库;

5 update user set password=PASSWORD("rootadmin") where user= 'root'

6 Mysql目录下的my.ini文件,删除最后一行,保存并关闭文件。

7、重启mysql服务

8、在命令行输入"mysql -uroot -prootadmin",问题解决



你可能感兴趣的:(【工具管理】)