• 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.

Input Plesk Magento 2 Required Services in Dockers - Varnish, Redis, Elasticsearch, RabbitMQ

WebHostingAce

Silver Pleskian
Varnish -


Redis -

docker run --name=redis --sysctl net.core.somaxconn=511 -p 127.0.0.1:6379:6379 redis

docker run --name=redis --sysctl net.core.somaxconn=511 -v /root/redis/conf:/usr/local/etc/redis -p 127.0.0.1:6379:6379 redis redis-server /usr/local/etc/redis/redis.conf
(Start Redis with redis.conf in root/redis/conf)

Elasticsearch -

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

RabbitMQ -
docker run --name=rabbitmq -p 127.0.0.1:15691:15691 -p 127.0.0.1:15692:15692 -p 127.0.0.1:25672:25672 -p 127.0.0.1:4369:4369 -p 127.0.0.1:5671:5671 -p 127.0.0.1:5672:5672 "rabbitmq:3.8.19"
 
Back
Top