🎄 Happy Holidays! 🥳
Most of Solace is closed December 24–January 1 so our employees can spend time with their families. We will re-open Thursday, January 2, 2024. Please expect slower response times during this period and open a support ticket for anything needing immediate assistance.
Happy Holidays!
Please note: most of Solace is closed December 25–January 2, and will re-open Tuesday, January 3, 2023.
How to retrieve the SolOS version
If you have PubSub+ version 10.1.0+ and use SEMP v2, you can retrieve the SolOS version with curl -X GET -u mgmt_username:password 192.168.XXX.XX:PORT/SEMP/v2/monitor
. You’ll see the version under data.version
.
Comments
-
Otherwise, you could use SEMPv1:
curl -u admin:admin http://localhost:8080/SEMP -d '<rpc><show><version/></show></rpc>'
<rpc-reply semp-version="soltr/9_13_0VMR"> <rpc> <show> <version> <description>Solace PubSub+ Standard Version 9.13.0.16</description> <executables> <executable> <name>CLI</name> <release>9.13.0.16</release> <build-date>2022-01-21T12:11:49+00:00</build-date> </executable> <executable> <name>DataplaneMgr</name> <release>9.13.0.16</release> <build-date>2022-01-21T12:11:49+00:00</build-date> </executable> SNIP
0