《Elastic Stack 实战手册》——三、产品能力——3.4.入门篇——3.4.1.Elastic Stack 安装部署—— 3.4.1.1.安装Elasticsearch(本地及docker)(9) https://developer.aliyun.com/article/1231504
修复方式:
通过 netstat -anp | grep 9200 命令寻找绑定9200 端口的进程:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?docker 进程没启动。
docker 安装之后不会自动启动,在未设置之前,服务器重启之后 docker 多半也不会自动重启。
修复方式:
1、启动docker 进程 systemctl start docker
2、设置docker 随系统启动 systemctl enable docker
Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers),访问 docker 仓库失败
在某些节点中可能无法直接访问外网进行 docker 镜像的下载。
[root@esteam7002 elasticsearch-7.10.0]# netstat -anp | grep 9200 tcp6 0 0 :::9200 :::* LISTEN 2130/docker-proxy-c [root@esteam7002 elasticsearch-7.10.0]# netstat -anp | grep 9200 114 > 三、产品能力 tcp6 0 0 127.0.0.1:9200 :::* LISTEN 2607/java tcp6 0 0 ::1:9200 :::* LISTEN 2607/java tcp6 0 0 ::1:45994 ::1:9200 TIME_WAIT -
根据进程详细信息来决定是加入现有集群、节点重启或更换其他端口 ps -ef | grep 2607
[root@esteam7002 elasticsearch-7.10.0]# ps -ef | grep 2607 elastic+ 2607 1 29 17:08 pts/1 00:00:26 /usr/local/elasticsearch/elasticsearch-7.10.0/jdk/bin/java -Xshare:auto -Des.networkaddress.cache.ttl=60 -Des.networkaddress.cache.negative.ttl=10 -XX:+AlwaysPreTouch -Xss1m -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djna.nosys=true -XX:-OmitStackTraceInFastThrow -XX:+ShowCodeDetailsInExceptionMessages -Dio.netty.noUnsafe=true -Dio.netty.noKeySetOptimization=true -Dio.netty.recycler.maxCapacityPerThread=0 -Dio.netty.allocator.numDirectArenas=0 -Dlog4j.shutdownHookEnabled=false -Dlog4j2.disable.jmx=true -Djava.locale.providers=SPI,COMPAT -Xms512m -Xmx512m -XX:+UseG1GC -XX:G1ReservePercent=25 -XX:InitiatingHeapOccupancyPercent=30 -Djava.io.tmpdir=/tmp/elasticsearch-8284412088063757117 -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=data -XX:ErrorFile=logs/hs_err_pid%p.log -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m -XX:MaxDirectMemorySize=268435456 -Des.path.home=/usr/local/elasticsearch/elasticsearch-7.10.0 -Des.path.conf=/usr/local/elasticsearch/elasticsearch-7.10.0/config -Des.distribution.flavor=default -Des.distribution.type=tar -Des.bundled_jdk=true -cp /usr/local/elasticsearch/elasticsearch-7.10.0/lib/* org.elasticsearch.bootstrap.Elasticsearch -d elastic+ 2626 2607 0 17:08 pts/1 00:00:00 /usr/local/elasticsearch/elasticsearch-7.10.0/modules/x-pack-ml/platform/linux-x86_64/bin/controller root 2688 703 0 17:10 pts/1 00:00:00 grep --color=auto 2607
ES 启动卡住,或者进行到一半就停止。可能是系统可用内存过少或者配置的ES 最大/最小内存过大。ES 在启动时会直接尝试申请
config/jvm.options 中申请的内存空间。
修复方式:
1、重新规划每个服务/程序的内存使用
2、调整 ES 的内存
创作人简介:
陈晨,十余年 IT 老兵,从售前做到运维,从后端做到 HR 和猎头,Hands on 过几乎IT 生命周期的整个过程,不说样样精通,只希望能和不同岗位的同学尽可能站在一个Baseline 上进行沟通和交流。希望能通过自己的一点努力,给更多的同学带来一些积极的影响,足矣。
博客:https://blog.csdn.net/weixin_40601534