一尘不染

Elastic Kibana-作为Windows服务安装

elasticsearch

如何将Elastic Kibana(只是批处理文件)安装为Windows服务?

它可能也需要依赖ElasticSearch流程(假设我在同一服务器上运行它)


阅读 807

收藏
2020-06-22

共1个答案

一尘不染

以下命令将创建名称为“ ElasticSearch Kibana 4.0.1”的服务,并使其依赖于ElasticSearch,因此它不会尝试过早启动。

sc create "ElasticSearch Kibana 4.0.1" binPath= "{path to batch file}" depend= "elasticsearch-service-x64"
2020-06-22