Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To Staging: Change to cloud-hosted-guide-jms-intro #3502

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions instructions/cloud-hosted-guide-jms-intro/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,10 +488,6 @@ curl -s http://localhost:9081/inventory/systems | jq
```


You can also use ***curl*** command to retrieve the ***hostname*** and ***systemLoad*** information from the ***inventory/systems*** REST endpoint in another command line session:
```
curl http://localhost:9081/inventory/systems
```

::page{title="Testing the inventory application"}

Expand Down Expand Up @@ -733,6 +729,27 @@ docker run \
--name QM1 ibm-mqadvanced-server-dev:9.4.0.0-arm64
```

Start IBM MQ by running the following command on the command-line session:

```bash
docker pull icr.io/ibm-messaging/mq:9.4.0.0-r3

docker volume create qm1data

docker run \
--env LICENSE=accept \
--env MQ_QMGR_NAME=QM1 \
--volume qm1data:/mnt/mqm \
--publish 1414:1414 --publish 9443:9443 \
--detach \
--env MQ_APP_PASSWORD=passw0rd \
--env MQ_ADMIN_PASSWORD=passw0rd \
--rm \
--platform linux/amd64 \
--name QM1 \
icr.io/ibm-messaging/mq:9.4.0.0-r3
```


When the IBM MQ container is running, you can access the ***https\://localhost:9443/ibmmq/console*** URL.

Expand Down