* MQ 9.1.3 changes * Use crtmqdir -a * Allow generation of TLS certificate with given hostname * Remove check for certificate env variable * Updated manifests and changelog for 913 * Use MQ externals to configure console frame ancestors * Create /run/mqm * Go sec fixes * Set SAN when generating certificates * Remove image source and commit
40 lines
1.3 KiB
Markdown
40 lines
1.3 KiB
Markdown
# Security
|
|
|
|
## Container runtime
|
|
|
|
### User
|
|
|
|
The MQ server image is run using the "mqm" user, with a fixed UID and GID of 888.
|
|
|
|
### Capabilities
|
|
|
|
The MQ Advanced image requires no Linux capabilities, so you can drop any capabilities which are added by default. For example, in Docker you could do the following:
|
|
|
|
```sh
|
|
docker run \
|
|
--cap-drop=ALL \
|
|
--env LICENSE=accept \
|
|
--env MQ_QMGR_NAME=QM1 \
|
|
--detach \
|
|
mqadvanced-server:9.1.3.0-amd64
|
|
```
|
|
|
|
The MQ Advanced for Developers image does require the "chown", "setuid", "setgid" and "audit_write" capabilities (plus "dac_override" if you're using an image based on Red Hat Enterprise Linux). This is because it uses the "sudo" command to change passwords inside the container. For example, in Docker, you could do the following:
|
|
|
|
```sh
|
|
docker run \
|
|
--cap-drop=ALL \
|
|
--cap-add=CHOWN \
|
|
--cap-add=SETUID \
|
|
--cap-add=SETGID \
|
|
--cap-add=AUDIT_WRITE \
|
|
--env LICENSE=accept \
|
|
--env MQ_QMGR_NAME=QM1 \
|
|
--detach \
|
|
mqadvanced-server-dev:9.1.3.0-amd64
|
|
```
|
|
|
|
### SELinux
|
|
|
|
The SELinux label "spc_t" (super-privileged container) is needed to run the MQ container on a host with SELinux enabled. This is due to a current limitation in how MQ data is stored on volumes, which violates the usual policy applied when using the standard "container_t" label.
|