elasticsearch常用命令备注】的更多相关文章

1.检查集群健康状态 curl 'localhost:9200/_cat/health?v' 2.检查节点健康状态 curl 'localhost:9200/_cat/nodes?v' 3.新增一条索引 curl -XPUT 'localhost:9200/fred_log?pretty' 4.查询当前索引 curl 'localhost:9200/_cat/indices?v' 5.在索引中添加文档,本例中添加如下: 备注:fred_log为索引名称.log为type curl -XPUT '…
1.将文件checkout到本地目录 svn checkout path(path是服务器上的目录) 例如:svn checkout svn://192.168.1.1/pro/domain 简写:svn co 2.往版本库中添加新的文件 svn add file 例如:svn add test.php(添加test.php) svn add *.php(添加当前目录下所有的php文件) 3.将改动的文件提交到版本库 svn commit -m "LogMessage" [-N] [-…
persistent (重启后设置也会存在) or transient (整个集群重启后会消失的设置). 查看集群状态和每个indices状态.搜索到red的,没用就删除 GET /_cluster/health?level=indices DELETE /.monitoring-kibana-6-2019.07.11/ 查看所有未重分配的的分片,分片要平均到各个节点 GET /_cat/shards?h=index,shard,prirep,state,unassigned.reason | …
elasticsearch的rest访问格式: curl -X<REST Verb> <Node>:<Port>/<Index>/<Type>/<ID> 1.启动 [es@vm1 bin]$ ./elasticsearch --cluster.name myes --node.name node1 2.查看集群状态 [es@vm1 ~]$ curl http://vm1:9200/_cat/health?v epoch      ti…
#查看集群状态 curl -XGET "http://localhost:9200/_cluster/health?pretty" #查看所有的快照 curl -XGET "http://localhost:9200/_snapshot/仓库名/_all" #查看快照信息 curl -XGET "http://localhost:9200/_snapshot/仓库名/snapshot_name/_status" #删除快照 curl -XDELE…
1.Cluster Health 集群状态 curl 'localhost:9200/_cat/health?v' yellow代表分片副本确实,因为我们现在只有一台机器. curl 'localhost:9200/_cat/nodes?v' 2.List All Indices 查询所有的索引 curl 'localhost:9200/_cat/indices?v' 3.Create an Index 创建索引 curl -XPUT 'localhost:9200/customer?prett…
索引 搜索 mapping 分词器 1.创建索引 http://192.168.65.131:9200/smartom_index?pretty 2.查看索引: http://192.168.65.131:9200/_cat/indices?v 3.插入数据[这样也就是说创建了一个文档为users] http://192.168.65.131:9200/smartom_index/users/101 { "name":"smartom", "age&quo…
集群相关 --查询集群健康状态 GET _cluster/health --查询所有节点 GET _cat/nodes --查询索引及分片的分布 GET _cat/shards --查询指定索引分片的分布GET _cat/shards/order_stpprdinf_2019-12?v --查询所有插件 GET _cat/plugins 索引相关查询 --查询所有索引及容量 GET _cat/indices --查询索引映射结构 GET my_index/_mapping --查询所有索引映射结…
目录 elasticsearch常用的一些集群命令 查看集群健康状态 查看集群的节点列表 查看所有的索引 删除索引 查询索引的某个文档内容 更新文档 删除文档 自动创建索引 定时删除索引 elasticsearch常用的一些集群命令 查看集群健康状态 get请求 /_cat/health?v epoch timestamp cluster status node.total node.data shards pri relo init unassign pending_tasks max_tas…
elastic索引日志清理不及时,很容易产生磁盘紧张,官网给出curl -k -XDELETE可以清理不需要的索引日志. 清理脚本 #!/bin/bash #Author: 648403020@qq.com #date: 2019.03.28 # 需要清理几天以前的索引日志 CLEAN_DAY=7 # 获取N天以前的年月日 YEAR=$(date -d "$(date -I) -$CLEAN_DAY"day"" +%Y) MONTH=$(date -d "…