জন্য ElasticSearch 7.8 এবং আপ
আপনি একক নোডে আছেন কিনা তা পরীক্ষা করুন। নিম্নলিখিত লাইন যুক্ত করুন
cluster.initial_master_nodes: node-1
অন্য কম্পিউটার বা অ্যাপ্লিকেশন থেকে ইলাস্টিক সার্চ অ্যাক্সেস করতে নোডের নিম্নলিখিত পরিবর্তনগুলি করুন 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
কিছু সময় আপনাকে সিওআর সক্ষম করতে হবে
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