1、jdk版本最好是1.8,用的是1.8.0_45
2、linux下配置profile设置JAVA环境变量
3、配置elasticsearch/config目录下的elasticsearch.yml
主要就是cluster.name(集群名称,es会自动发现同一个clustername的节点并组成集群)和node.name(节点名称)
cluster.name: elasticsearch
node.name: "Doug cutting"
4、在bin目录下./elasticsearch启动(以后台进程运行时,需要加上&)
5、查看是否启动成功
http://192.168.1.155:9200/
6、关闭时使用
curl -XPOST http://localhost:9200/_cluster/nodes/_shutdown
7、查看集群状态
curl -GET http://localhost:9200/_cluster/state/nodes/
时间: 2024-10-11 01:11:39