windows系统启动Elasticsearch 8.1.3无法访问

1.下载es

Past Releases of Elastic Stack Software | Elastic

我是下载的8.1.3这个版本

windows系统启动Elasticsearch 8.1.3无法访问_第1张图片

2.解压,双击bin目录下的elasticsearch.bat启动es

windows系统启动Elasticsearch 8.1.3无法访问_第2张图片

3.启动成功后,访问http://localhost:9200

windows系统启动Elasticsearch 8.1.3无法访问_第3张图片

 访问之后发现,一直不能访问,而且es打印的日志:

received plaintext http traffic on an https channel, closing connection Netty4HttpChannel{localAddress=/[0:0:0:0:0:0:0:1]:9200, remoteAddress=/[0:0:0:0:0:0:0:1]:3244}

windows系统启动Elasticsearch 8.1.3无法访问_第4张图片

windows系统启动Elasticsearch 8.1.3无法访问_第5张图片

原因:ES8默认开启了 ssl 认证

解决:修改elasticsearch.yml配置文件:

xpack.security.http.ssl:enabled 设置成 false

xpack.security.enabled 设置成false

# Enable security features
xpack.security.enabled: false

# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agents
xpack.security.http.ssl:
  enabled: false
  keystore.path: certs/http.p12

重新启动,即可成功访问: 

windows系统启动Elasticsearch 8.1.3无法访问_第6张图片

你可能感兴趣的:(elasticsearch)