You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
1
# Change log
2
2
3
+
## 9.1.3.0 (2019-07-19)
4
+
5
+
* Updated to MQ version 9.1.3.0
6
+
* Allow generation of TLS certificate with given hostname
7
+
* Fixes for the following issues:
8
+
*`MQ_EPHEMERAL_PREFIX` UNIX sockets fix
9
+
* Fix Makefile for Windows
10
+
* Use -a option on crtmqdir
11
+
* Remove check for certificate environment variable
12
+
3
13
## 9.1.2.0-UBI (2019-06-21)
4
14
5
15
**Breaking changes**:
@@ -13,6 +23,7 @@
13
23
14
24
## 9.1.2.0 (2019-03-21)
15
25
26
+
* Updated to MQ version 9.1.2.0
16
27
* Now runs using the "mqm" user instead of root. See new [security doc](https://github.com/ibm-messaging/mq-container/blob/master/docs/security.md)
17
28
* New [IGNSTATE](https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_9.1.0/com.ibm.mq.pro.doc/q132310_.htm#q132310___ignstateparm) parameter used in default developer config
18
29
* Termination log moved from `/dev/termination-log` to `/run/termination-log`, to make permissions easier to handle
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,8 @@ For issues relating specifically to the container image or Helm chart, please us
44
44
The Dockerfiles and associated code and scripts are licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
45
45
Licenses for the products installed within the images are as follows:
46
46
47
-
-[IBM MQ Advanced for Developers](http://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=Z125-3301-14&li_formnum=L-APIG-AVCJ4S) (International License Agreement for Non-Warranted Programs). This license may be viewed from an image using the `LICENSE=view` environment variable as described above or by following the link above.
48
-
-[IBM MQ Advanced](http://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=Z125-3301-14&li_formnum=L-APIG-AZYF4X) (International Program License Agreement). This license may be viewed from an image using the `LICENSE=view` environment variable as described above or by following the link above.
47
+
-[IBM MQ Advanced for Developers](http://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=Z125-3301-14&li_formnum=L-APIG-BBZHCQ) (International License Agreement for Non-Warranted Programs). This license may be viewed from an image using the `LICENSE=view` environment variable as described above or by following the link above.
48
+
-[IBM MQ Advanced](http://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=Z125-3301-14&li_formnum=L-APIG-BBSHJL) (International Program License Agreement). This license may be viewed from an image using the `LICENSE=view` environment variable as described above or by following the link above.
49
49
- License information for Ubuntu packages may be found in `/usr/share/doc/${package}/copyright`
50
50
51
51
Note: The IBM MQ Advanced for Developers license does not permit further distribution and the terms restrict usage to a developer machine.
Copy file name to clipboardExpand all lines: docs/building.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ If you are working in the Windows Subsystem for Linux, follow [this guide by Mic
14
14
This procedure works for building the MQ Continuous Delivery release, on `amd64`, `ppc64le` and `s390x` architectures.
15
15
16
16
1. Create a `downloads` directory in the root of this repository
17
-
2. Download MQ from [IBM Passport Advantage](https://www.ibm.com/software/passportadvantage/) or [IBM Fix Central](https://www.ibm.com/support/fixcentral), and place the downloaded file (for example, `IBM_MQ_9.1.2_UBUNTU_X86-64.tar.gz`) in the `downloads` directory
17
+
2. Download MQ from [IBM Passport Advantage](https://www.ibm.com/software/passportadvantage/) or [IBM Fix Central](https://www.ibm.com/support/fixcentral), and place the downloaded file (for example, `IBM_MQ_9.1.3_LINUX_X86-64.tar.gz`) in the `downloads` directory
18
18
3. Run `make build-advancedserver`
19
19
20
20
> **Warning**: Note that MQ offers two different sets of packaging on Linux: one is called "MQ for Linux" and contains RPM files for installing on Red Hat Enterprise Linux and SUSE Linux Enterprise Server. The MQ container build uses a Red Hat Universal Base Image, so you need the "MQ for Linux" RPM files.
Copy file name to clipboardExpand all lines: docs/security.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ docker run \
16
16
--env LICENSE=accept \
17
17
--env MQ_QMGR_NAME=QM1 \
18
18
--detach \
19
-
mqadvanced-server:9.1.2.0-amd64
19
+
mqadvanced-server:9.1.3.0-amd64
20
20
```
21
21
22
22
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:
0 commit comments