How to retrieve the SolOS version

Options
hong
hong Guest Posts: 480 ✭✭✭✭✭

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

  • Aaron
    Aaron Member, Administrator, Moderator, Employee Posts: 527 admin
    edited October 2022 #2
    Options

    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