Enabling and disabling the IBM Integration Bus web user interface

You can enable or disable the web user interface on an integration node.

About this task

You can use the following tasks to enable or disable the web user interface:
Note:

For integration nodes that were created in WebSphere® Message Broker Version 8.0, the web user interface is enabled in later versions only if you enabled it in Version 8.0. If you created integration nodes in Version 8.0 and did not enable the web user interface, it remains disabled for those integration nodes in subsequent versions. The web user interface is not enabled automatically for integration nodes that are migrated from WebSphere Message Broker Version 7.0.

Disabling the web user interface

About this task

The web user interface is enabled by default when an integration node is created, but you can disable the web user interface.

Procedure

  1. Disable the web user interface for the integration node by running the following command from the IBM® Integration Console on Windows, or the command line on other operating systems:
    mqsichangeproperties integrationNodeName -b webadmin -o server -n enabled -v false
  2. Confirm that the web user interface is disabled by running the mqsireportproperties command, as shown in the following example:
    mqsireportproperties integrationNodeName -b webadmin -o server -a
    This command produces a response similar to this example:
    server=''
      uuid='server'
      enabled='false'
      enableSSL='false'
     
  3. To ensure that the changes take effect, restart the integration node.

Enabling the web user interface

About this task

The web user interface is enabled by default when an integration node is created but, if the web user interface has been disabled, you can enable the web user interface again.

Procedure

  1. Enable the web user interface for the integration node by running one of the following commands from the IBM Integration Console on Windows, or the command line on other operating systems:
    • If you are using HTTP, run the following command where integrationNodeName is the name of your integration node:
      mqsichangeproperties integrationNodeName 
      -b webadmin -o server -n enabled,enableSSL -v true,false
    • If you are using HTTPS, run the following command:
      mqsichangeproperties integrationNodeName 
      -b webadmin -o server -n enabled,enableSSL -v true,true
  2. Confirm that the web user interface is enabled by running the mqsireportproperties command, as shown in the following example:
    mqsireportproperties integrationNodeName -b webadmin -o server -a
    The response is similar to the following example:
    server=''
      uuid='server'
      enabled='true'
      enableSSL='true'
  3. To ensure that the changes take effect, restart the integration node.