• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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