当前位置:首页 > 大杂烩 > 正文内容

elasticsearch在线管理插件,elasticsearch web界面

高老师7年前 (2019-09-22)大杂烩2546

elasticsearch-head是一款js编写的在线管理elasticsearch的插件。github地址:

https://github.com/mobz/elasticsearch-head

安装:

  • git clone git://github.com/mobz/elasticsearch-head.git

  • cd elasticsearch-head

  • npm install

  • npm run start

  • open http://localhost:9100/

推荐使用淘宝cnpm安装。

同时要在elasticsearch的配置文件elasticsearch.yml中添加允许跨域,然后重启elasticsearch:

http.cors.enabled: true
http.cors.allow-origin: "*"

扫描二维码推送至手机访问。

版权声明:本文由高久峰个人博客发布,如需转载请注明出处。

本文链接:https://blog.20230611.cn/post/527.html

分享给朋友:

“elasticsearch在线管理插件,elasticsearch web界面” 的相关文章

c#中string和StringBuilder效率对比

c#中string和StringBuilder效率对比

    c#中string和StringBuilder直接看看执行速度。(2).String类型累计赋值Test               ...

Git本地仓库学习

Git本地仓库学习

1.全局用户信息设置 git  config  --global  user.name  gaojiufeng git  config  --global  user.email  392223903...

Git从远程仓库更新文件

Git从远程仓库更新文件

 git   pull  https://git.oschina.net/392223903/learn.git   master   换为您的git地址...

Git日志查看和版本切换

Git日志查看和版本切换

日志查看:git log版本切换:方式1:git  reset  --hard  HEAD^   倒退一个版本git  reset  --hard  HEAD^^  倒退两个版本方式2:(版本号的形式,建议版本号码补充完...

C# md5加密,C# md5加密代码

C# md5加密,C# md5加密代码

public static string GetMD5(string str) {     //创建MD5对象     MD5 md5 = MD5.C...

c#中文简体转换繁体

c#中文简体转换繁体

private const string fantizi = "高久峰是個程序員"; private const string jiantizi = "高久峰是个程序员...