• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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"
 
Thank you for your input, but note that here is a special forum section for such things: Resources
 
Back
Top