在将Jenkins作为Windows服务安装时,出现错误“ id为'jenkins'的服务已存在”

时间:2019-08-17 10:20:23

标签: java jenkins jenkins-pipeline

将Jenkins作为Windows服务安装时遇到问题: 这是错误日志:

Error
Installing a service
[.jenkins] $ C:\Users\Lenovo-I7\.jenkins\jenkins.exe install
2019-08-17 15:43:47,662 INFO  - Installing the service with id 'jenkins'
Service with id 'jenkins' already exists
To install the service, delete the existing one or change service Id in the configuration file
2019-08-17 15:43:47,667 FATAL - Unhandled exception
System.Exception: Installation failure: Service with id 'jenkins' already exists
   at winsw.WrapperService.Run(String[] _args, ServiceDescriptor descriptor)
   at winsw.WrapperService.Main(String[] args)
System.Exception: Installation failure: Service with id 'jenkins' already exists
   at winsw.WrapperService.Run(String[] _args, ServiceDescriptor descriptor)
   at winsw.WrapperService.Main(String[] args)

之前,我也已经在系统中安装了Jenkins,因此遇到了一些问题,因此我将其卸载并重新安装。现在我遇到了这个问题。 任何帮助,将不胜感激。 谢谢

1 个答案:

答案 0 :(得分:0)

如错误所示,必须有一些名称为jenkins的现有服务。要删除该文件,请使用提升的特权(即以管理员身份运行)打开命令提示符,然后键入以下命令:sc delete jenkins

有关sc命令的更多详细信息,请参阅this页面。