目录结构
# tree -L 2 /usr/local/elasticsearch-7.6.0/
/usr/local/elasticsearch-7.6.0/
├── bin
│ ├── elasticsearch
│ ├── elasticsearch-certgen
│ ├── elasticsearch-certutil
│ ├── elasticsearch-cli
│ ├── elasticsearch-croneval
│ ├── elasticsearch-env
│ ├── elasticsearch-env-from-file
│ ├── elasticsearch-keystore
│ ├── elasticsearch-migrate
│ ├── elasticsearch-node
│ ├── elasticsearch-plugin
│ ├── elasticsearch-saml-metadata
│ ├── elasticsearch-setup-passwords
│ ├── elasticsearch-shard
│ ├── elasticsearch-sql-cli
│ ├── elasticsearch-sql-cli-7.6.0.jar
│ ├── elasticsearch-syskeygen
│ ├── elasticsearch-users
│ ├── x-pack-env
│ ├── x-pack-security-env
│ └── x-pack-watcher-env
├── config
│ ├── elasticsearch.keystore
│ ├── elasticsearch.yml
│ ├── jvm.options
│ ├── log4j2.properties
│ ├── role_mapping.yml
│ ├── roles.yml
│ ├── users
│ └── users_roles
├── data
│ └── nodes
├── jdk
│ ├── bin
│ ├── conf
│ ├── include
│ ├── jmods
│ ├── legal
│ ├── lib
│ ├── man
│ └── release
├── lib
├── logs
├── modules
│ ├── aggs-matrix-stats
│ ├── analysis-common
│ ├── flattened
│ ├── frozen-indices
│ ├── ingest-common
│ ├── ingest-geoip
│ ├── ingest-user-agent
│ ├── lang-expression
│ ├── lang-mustache
│ ├── lang-painless
│ ├── mapper-extras
│ ├── parent-join
│ ├── percolator
│ ├── rank-eval
│ ├── reindex
│ ├── repository-url
│ ├── search-business-rules
│ ├── spatial
│ ├── transform
│ ├── transport-netty4
│ ├── vectors
│ ├── x-pack-analytics
│ ├── x-pack-ccr
│ ├── x-pack-core
│ ├── x-pack-deprecation
│ ├── x-pack-enrich
│ ├── x-pack-graph
│ ├── x-pack-ilm
│ ├── x-pack-logstash
│ ├── x-pack-ml
│ ├── x-pack-monitoring
│ ├── x-pack-rollup
│ ├── x-pack-security
│ ├── x-pack-sql
│ ├── x-pack-voting-only-node
│ └── x-pack-watcher
├── NOTICE.txt
├── plugins
│ └── analysis-icu
└── README.asciidoc
54 directories, 95 files
54 directories
查看插件列表
./bin/elasticsearch-plugin list
安装插件
./bin/elasticsearch-plugin install analysis-icu
网友评论