สำหรับElasticSearch 7.8.2ขึ้นไป
ตรวจสอบว่าคุณอยู่ในโหนดเดียวหรือไม่ เพิ่มบรรทัดต่อไปนี้
cluster.initial_master_nodes: node-1
ในการเข้าถึงเซิร์ฟเวอร์ Elasticsearch จากคอมพิวเตอร์หรือแอปพลิเคชันอื่นให้ทำการเปลี่ยนแปลงต่อไปนี้กับโหนด C:\ProgramData\Elastic\Elasticsearch\config\elasticsearch.yml file:
เพิ่มบรรทัดต่อไปนี้
network.host: ["0.0.0.0", 127.0.0.1", "[::1]"]
network.bind_host: 0.0.0.0
network.publish_host: 0.0.0.0
http.host: 0.0.0.0
บางครั้งคุณอาจต้องเปิดใช้งาน CORS
http.cors.enabled : true
http.cors.allow-origin : "*"
http.cors.allow-methods : OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers : X-Requested-With,X-Auth-Token,Content-Type, Content-Length
นี่คือไฟล์ yml แบบเต็มของฉัน
bootstrap.memory_lock: false
cluster.name: elasticsearch
http.port: 9200
node.data: true
node.ingest: true
node.master: true
node.max_local_storage_nodes: 1
cluster.initial_master_nodes: node-1
node.name: ITDEV
path.data: C:\ProgramData\Elastic\Elasticsearch\data
path.logs: C:\ProgramData\Elastic\Elasticsearch\logs
transport.tcp.port: 9300
xpack.license.self_generated.type: basic
xpack.security.enabled: false
network.host: ["0.0.0.0", 127.0.0.1", "[::1]"]
network.bind_host: 0.0.0.0
network.publish_host: 0.0.0.0
http.host: 0.0.0.0
http.cors.enabled : true
http.cors.allow-origin : "*"
http.cors.allow-methods : OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers : X-Requested-With,X-Auth-Token,Content-Type, Content-Length