MySQL Service detected with wrong path

来源:互联网 发布:ubuntu双系统安装 编辑:程序博客网 时间:2024/06/06 15:49

 原文出处


 问题描述:以前安装过mysql,后来安装xampp,mysql打不开,出错提示

16:04:48  [mysql] MySQL Service detected with wrong path

16:04:48  [mysql] Change XAMPP MySQL and Control Panel settings or

16:04:48  [mysql] Uninstall/disable the other service manually first

16:04:48  [mysql] Found Path: "D:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld" --defaults-file="D:\Program

 Files\MySQL\MySQL Server 5.1\my.ini" MySQL

16:04:48  [mysql] Expected Path: e:\xampp\mysql\bin\mysqld.exe --defaults-file=e:\xampp\mysql\bin\my.ini mysql


大致意思为,系统已启动了另外一个mysql服务,默认路径D:\Program Files\MySQL\MySQL Server 5.1\bin\不正确,

正确的路径应该是e:\xampp\mysql\bin\。

在命令行中运行<xampp>\mysql下的mysql_installservice.bat,提示

“Installing MySQL as an Service

系统找不到指定的文件。

Install/Remove of the Service Denied!

Try to start the MySQL deamon as service …

发生系统错误 5。

拒绝访问。


解决方法:修改注册表

我的是windows系统,直接修改注册表

windows+R键 输入regedit

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MySQL]的ImagePath修改成新的xampp中位

<xampp>E\mysql\bin\mysqld MySQL

重启explorer.exe进程,使注册表生效

再次点击 mysql 后边的start,mysql服务正常启动!

阅读全文
0 0