wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.2.zip
sha1sum elasticsearch-5.5.2.zip
unzip elasticsearch-5.5.2.zip
cd elasticsearch-5.5.2/
启动 ./bin/elasticsearch
不能用root用户启动,创建用户
groupadd elasticsearch
useradd -r -g elasticsearch elasticsearch
chown -R elasticsearch elasticsearch-5.5.2
chgrp -R elasticsearch elasticsearch-5.5.2
chown -R 用户名 文件夹
chgrp -R 用户组名 文件夹
su elasticsearch
要作为守护程序运行Elasticsearch,请-d在命令行中指定,并使用以下-p选项将进程ID记录在文件中:
./bin/elasticsearch -d -p pid
日志消息可以在$ES_HOME/logs/目录中找到。
要关闭Elasticsearch,请杀死pid文件中记录的进程ID :
kill `cat pid`
Elasticsearch内存分配默认1G,可在启动命令前设置
ES_JAVA_OPTS="-Xms200m -Xmx200m" ./bin/elasticsearch -d -p pid
默认情况下,Elastic 只允许本机访问,如果需要远程访问,可以修改 Elastic 安装目录的config/elasticsearch.yml文件,去掉network.host的注释,将它的值改成0.0.0.0,然后重新启动 Elastic。
查看集群健康 GET /_cluster/health
查看所有索引 curl -X GET 'http://localhost:9200/_cat/indices?v'
查看索引所包含的type curl 'localhost:9200/_mapping?pretty=true'
报错"max virtual memory areas vm.maxmapcount [65530] is too low",要运行下面的命令。
vi /etc/sysctl.conf vm.max_map_count=655360 执行 sysctl -p
错误“max file descriptors [65535] for elasticsearchprocess is too low, increase to at least [65536]”,maxfile descriptors为最大文件描述符,设置其大于65536即可。
解决方法是修改/etc/security/limits.conf文件,添加
* - nofile65536
* - memlock unlimited
*表示给所有用户起作用
curl 'http://120.77.179.86:9201/_analyze?analyzer=ik_max_word&pretty=true' -d '{"text":"你好"}'
elasticsearch6
curl -H 'Content-Type:application/json' 'http://localhost:9200/_analyze?analyzer=ik_max_word&pretty=true' -d '{"text":"中华人民共和国"}'
curl -H 'Content-Type:application/json' 'http://localhost:19201/_analyze?pretty=true' -d '
{
"text":"味道",
"analyzer" : "ik_max_word"
}'