From 5449622d2af1d710b0ef9878fc54f050390db26d Mon Sep 17 00:00:00 2001 From: Amrit K Kandola Date: Tue, 3 Dec 2019 16:13:00 +0000 Subject: [PATCH] Remove developer listener and remove actions to stop and alter system listener (#41) --- docs/developer-config.md | 5 ----- incubating/mqadvanced-server-dev/10-dev.mqsc.tpl | 7 ------- 2 files changed, 12 deletions(-) diff --git a/docs/developer-config.md b/docs/developer-config.md index 161f42f..2580fce 100644 --- a/docs/developer-config.md +++ b/docs/developer-config.md @@ -34,11 +34,6 @@ Two channels are created, one for administration, the other for normal messaging * DEV.ADMIN.SVRCONN - configured to only allow the `admin` user to connect into it. A user and password must be supplied. * DEV.APP.SVRCONN - does not allow administrative users to connect. Password is optional unless you choose a password for app users. -A new listener is created (the SYSTEM listener is fine, but system objects are not shown by default in the web console): - -* DEV.LISTENER.TCP - listens on port 1414. - - ## Web Console By default the MQ Advanced for Developers image will start the IBM MQ Web Console that allows you to administer your Queue Manager running on your container. When the web console has been started, you can access it by opening a web browser and navigating to https://:9443/ibmmq/console. Where is replaced by the IP address of your running container. diff --git a/incubating/mqadvanced-server-dev/10-dev.mqsc.tpl b/incubating/mqadvanced-server-dev/10-dev.mqsc.tpl index 5796bbd..f1c6b76 100644 --- a/incubating/mqadvanced-server-dev/10-dev.mqsc.tpl +++ b/incubating/mqadvanced-server-dev/10-dev.mqsc.tpl @@ -13,9 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. -STOP LISTENER('SYSTEM.LISTENER.TCP.1') IGNSTATE(YES) -ALTER LISTENER('SYSTEM.LISTENER.TCP.1') TRPTYPE(TCP) CONTROL(MANUAL) - * Developer queues DEFINE QLOCAL('DEV.QUEUE.1') REPLACE DEFINE QLOCAL('DEV.QUEUE.2') REPLACE @@ -48,7 +45,3 @@ SET CHLAUTH('DEV.ADMIN.SVRCONN') TYPE(USERMAP) CLNTUSER('admin') USERSRC(CHANNEL SET AUTHREC GROUP('mqclient') OBJTYPE(QMGR) AUTHADD(CONNECT,INQ) SET AUTHREC PROFILE('DEV.**') GROUP('mqclient') OBJTYPE(QUEUE) AUTHADD(BROWSE,GET,INQ,PUT) SET AUTHREC PROFILE('DEV.**') GROUP('mqclient') OBJTYPE(TOPIC) AUTHADD(PUB,SUB) - -* Developer listener -DEFINE LISTENER('DEV.LISTENER.TCP') TRPTYPE(TCP) PORT(1414) CONTROL(QMGR) REPLACE -START LISTENER('DEV.LISTENER.TCP') IGNSTATE(YES)