• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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