How to Detect Service Versions on Adobe Commerce Cloud
Adobe Commerce Cloud manages your infrastructure services for you, but knowing exactly which versions of Valkey, MariaDB and RabbitMQ are running on your environments isn’t always obvious. The .magento/services.yaml file defines what you’ve requested, but that doesn’t always reflect what’s actually deployed - especially after platform upgrades or environment redeployments.
Here’s how to check the actual running versions by SSH’ing into your environment.
Valkey
$ valkey-server -v
Valkey server v=8.0.1 sha=4fbab574:0 malloc=jemalloc-5.3.0 bits=64 build=84a9272b225dd059If your environment is still running Redis rather than Valkey, you can use redis-server -v instead.
MariaDB
$ mariadb -V
mariadb Ver 15.1 Distrib 10.11.9-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2Note the uppercase -V flag here - lowercase -v won’t give you what you need.
RabbitMQ
$ dpkg -s rabbitmq-server | grep Version
Version: 4.1.0-1RabbitMQ doesn’t have a straightforward version flag like the others, so querying the installed package via dpkg is the simplest approach.
Why this matters
Knowing your actual service versions is useful when debugging compatibility issues, preparing for upgrades or verifying that a platform change has actually taken effect. It’s also handy when raising support tickets with Adobe - having the exact version numbers saves a fair amount of back and forth.