1. 程式人生 > >Mysql:(.\mysqld -install) The service already exists!

Mysql:(.\mysqld -install) The service already exists!

  The service already exists!

安裝zip版本的mysql執行到mysqld -install時提示:

The service already exists!

原因是之前安裝導致的問題沒有解除安裝乾淨MySQL服務

在“window工作管理員----服務”中檢視,發現確實存在MySQL服務

解決方案:


移除原來的mysql服務
mysqld -remove MySQL

或者
sc delete mysql
重新註冊 mysql服務
mysqld –install MySQL –defaults-file=”C:\mysql-5.1.34\my.ini”

參考:https://blog.csdn.net/snihcel/article/details/9464189

https://www.aliyun.com/jiaocheng/1121051.html