• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question elasticsearch Docker

Miller

Basic Pleskian
Does anyone have the settings to get an elasticsearch Docker working with Magento 2.4, I am struggling to find any instructions anywhere

Thanks
 
I have Elasticsearch Docker working with Magento 2.4. No Issues.

#docker run --name=elasticsearch -p 127.0.0.1:9200:9200 -p 127.0.0.1:9300:9300 "elasticsearch:7.6.2"

If the docker is running correctly, You should get a output as below when you run "curl http://localhost:9200/_cluster/health?pretty" as the M2 users.

-bash-4.2$ curl http://localhost:9200/_cluster/health?pretty
{
"cluster_name" : "docker-cluster",
"status" : "yellow",
"timed_out" : false,
"number_of_nodes" : 1,
"number_of_data_nodes" : 1,
"active_primary_shards" : 20,
"active_shards" : 20,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 20,
"delayed_unassigned_shards" : 0,
"number_of_pending_tasks" : 0,
"number_of_in_flight_fetch" : 0,
"task_max_waiting_in_queue_millis" : 0,
"active_shards_percent_as_number" : 50.0
}

You might have to increase the vm.max_map_count=262144 to Elasticsearch Docker to start. Please check the Elasticsearch Docker log first.

You can check the log Plesk > Dockers > "Elasticsearch Docker" > Details. This will tell you exactly what is the issue is.

As Root,

#sysctl -w vm.max_map_count=262144
 
Last edited:
Assuming that you want to run a single node but Elasticsearch 7...... want to start in a cluster but cannot find one so shuts down again.

Add a mapping: discovery.type single-node

That worked for me with Magento 2.4.
 

Attachments

  • Screenshot 2020-08-25 at 08.55.32.png
    Screenshot 2020-08-25 at 08.55.32.png
    74.1 KB · Views: 474
Back
Top