💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 安装elasticsearch 6.2.2 [下载地址](https://www.elastic.co/cn/downloads/past-releases/elasticsearch-6-2-2) ``` cd ..\elasticsearch-6.2.2\bin elasticsearch-service.bat install # 提示:The service 'elasticsearch-service-x64' has been installed.表示安装成功 # install:安装服务|remove:删除服务|start:启动|stop:暂停|manager:打开服务管理器 elasticsearch-service.bat install|remove|start|stop|manager open http://localhost:9200/ ``` ### 安装elasticsearch-head ``` git clone git://github.com/mobz/elasticsearch-head.git cd elasticsearch-head cnpm install npm run start open http://localhost:9100/ # 修改elasticksearch配置 (config/elasticsearch.yml) 添加一下配置 http.cors.enabled: true http.cors.allow-origin: "*" elasticsearch-service.bat stop elasticsearch-service.bat start open http://localhost:9100/ # 如果原来install了,打开网页会发现无法连接到集群, # 需要先remove服务,重新install一次才可以 ``` ![](https://box.kancloud.cn/acfccf8e2c26ae4914fa86c42dad9082_1304x194.png) ### 安装logstash-6-2-2 [下载地址](https://www.elastic.co/cn/downloads/past-releases/logstash-6-2-2) ### 安装kibana-6-2-2 [下载地址](https://www.elastic.co/cn/downloads/past-releases/kibana-6-2-2)