Arthur Barr
Arthur Barr
No, it just means that the arm64 build in the 9.4.0.x code stream is not being produced, as that code stream gets special treatment due to it being part of...
This Helm chart uses a StatefulSet. If you use the [`topology.kubernetes.io/zone`](https://kubernetes.io/docs/reference/labels-annotations-taints/#topologykubernetesiozone) label on your Node resources as is common, then the Kubernetes scheduler will automatically spread the Pods in the...
The `runmqserver` command [creates](https://github.com/ibm-messaging/mq-container/blob/034f9276bb78de4afd94ef54efdd0a7a80d188e6/internal/tls/tls.go#L577) the `cmsTrust.pem` file dynamically. I suspect that either: 1. The PEM file does not contain the full trust chain for the certificate. MQ needs the entire...
You need to have the full trust chain in each place. i.e. the CA cert needs to be in the `pki/keys/mycomp/` directory. When that gets imported, the CA will become...
You need a container with the right language pack installed. Unfortunately, the Red Hat Universal Base Image (UBI) repos only supply a single language pack for English. Other language packs...
On my machine, I can check that I have the right CCSID: ``` echo "display qmgr ccsid" | podman exec -ti df7 runmqsc display qmgr ccsid 5724-H72 (C) Copyright IBM...
Correction: I have now learned that UBI does include language packs in the `glibc-all-langpacks` package. This means you can build a container with the following `Dockerfile` on any host (i.e....
You mention that you are using a Helm chart. Are you using the sample Helm chart [here](https://github.com/ibm-messaging/mq-helm/tree/main/charts/ibm-mq)? The formatting of the YAML in your example has gotten lost, but the...
There are two main things to consider here: 1. The MQ queue manager configuration 2. The MQ Explorer configuration IBM MQ does not configure users for you, in the queue...
Port 1414 can be used for TLS and non-TLS traffic. Connecting via TLS is notoriously complex, as the underlying TLS code can't expose detailed error messages, as that could represent...