單個 節點 可以作為一個運行中的 Elasticsearch 的實例。 而一個 集群 是一組擁有相同 cluster.name 的節點, 他們能一起工作並共用數據,還提供容錯與可伸縮性。(當然,一個單獨的節點也可以組成一個集群) 你可以在 elasticsearch.yml 配置文件中 修改 clu... ...
安裝環境:centos6.5 64位 jdk1.8 elasticsearch6.1.1
一、啟動 [root@localhost bin]# ./elasticsearch -d -d在後臺啟動
啟動異常: java.lang.RuntimeException: can not run elasticsearch as root(註:ES有執行腳本的能力,因安全因素,不能在root用戶下運行,)
解決方案:創建一個es用戶,使用 es用戶啟動
[root@localhost bin]# groupadd es
[root@localhost bin]# useradd es -g es -p 111111
[root@localhost bin]# chown -R es:es /usr/local/elasticsearch6.1/
[root@localhost bin]# su es
[es@localhost bin]$ ./elasticsearch -d
[es@localhost bin]$ ps -ef|grep java
es 1800 1 86 21:47 pts/0 00:00:11 /usr/local/jdk1.8/bin/java -Xms1g -Xmx1g -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+AlwaysPreTouch -server -Xss1m -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djna.nosys=true -XX:-OmitStackTraceInFastThrow -Dio.netty.noUnsafe=true -Dio.netty.noKeySetOptimization=true -Dio.netty.recycler.maxCapacityPerThread=0 -Dlog4j.shutdownHookEnabled=false -Dlog4j2.disable.jmx=true -XX:+HeapDumpOnOutOfMemoryError -Des.path.home=/usr/local/elasticsearch6.1 -Des.path.conf=/usr/local/elasticsearch6.1/config -cp /usr/local/elasticsearch6.1/lib/* org.elasticsearch.bootstrap.Elasticsearch -d
es 1820 1760 0 21:47 pts/0 00:00:00 grep java
:::* LISTEN 1800/java
二、查看是否啟動成功
查看埠是否開啟:
[root@localhost config]# netstat -nalp|grep 9200
tcp 0 0 ::ffff:127.0.0.1:9200 :::* LISTEN 1800/java
tcp 0 0 ::1:9200
[root@localhost bin]# curl -v http://127.0.0.1:9200 curl模擬http請求
三、設置外網訪問
vim conf/elasticsearch.yml
修改:network.host: 0.0.0.0
再次啟動elasticsearch 可能出現如下類似錯誤
1、bootstrap checks failed
max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
切換到root用戶
vi /etc/security/limits.conf
添加:
* soft nofile 65536
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
vi /etc/security/limits.d/90-nproc.conf
修改
* soft nproc 1024
#修改為
* soft nproc 2048
vi /etc/sysctl.conf
添加下麵配置:
vm.max_map_count=655360
並執行命令:sysctl -p
2、system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk
在elasticsearch.yml中配置bootstrap.system_call_filter為false,註意要在Memory下麵:
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
四、http://192.168.0.56:9200/ 訪問地址
五、el的目錄結構: