包含标签 Elasticsearch 中的文章

Elasticsearch Api 操作

Elasticsearch api 操作 常用选项 返回漂亮的展示 ?pretty=true 返回人性化的结果 ?human cat apis 查看节点版本信息 curl -s -XGET -u elastic:elastic http://127.0.0.1:9200 查看集群健康状态 curl -u elastic:elastic http://127.0.0.1:9200/_cat/health?v 查看nodes状态 curl -u elastic:elastic http://127.0.0.1:9200/_cat/nodes?pretty 查看所有索引 curl -s -XGET -u elastic:elastic http://127.0.0.1:9200/_cat/indices # 添加过滤条件 curl -u elastic:elastic http://127.0.0.1:9200/_cat/indices/tbex*-2020.09.25?v 查看全部索引分片信息 curl……

阅读全文

Elasticsearch接入LDAP

说明: elasticsearch版本: 7.6.1 修改elasticsearch.yml,添加如下内容,并根据自己情况做相应修改 # 使用ldap xpack: security: authc: realms: ldap: ldap1: order: 0 url: "ldap://192.168.0.100:389" user_dn_templates: - "uid={0},ou=People,dc=Chk,dc=com" group_search: base_dn: "dc=Chk,dc=com" files: role_mapping: "/etc/elasticsearch/role_mapping.yml" unmapped_groups_as_roles: false # 使用ldaps xpack: security: authc: realms: ldap:……

阅读全文

Elasticsearch7.6.1 破解

教程参考:https://blog.espnlol.com/?p=504 破解过程 前期准备 准备反编译工具 破解中要用户反编译工具 luyten,根据自动环境下载相应的版本 https://github.com/deathmarine/Luyten/releases 最新版本的osx 版本不适用 macos 10.……

阅读全文

Elasticsearch 滚动重启

全集群重启 禁用分片分配 PUT _cluster/settings { "persistent": { "cluster.routing.allocation.enable": "primaries" } } 关闭所有es节点 sudo systemctl stop elasticsearch # 或者 kill $(cat pid) 根据需要对es做出修改 重新启动节点 如果有专用的主节点,请先启动它,然后等待专用的主节点选举出主节点,再继续启动数据节点 查看集……

阅读全文