Skip to Main Content
Integration


This is an IBM Automation portal for Integration products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.


Status Functionality already exists
Created by Guest
Created on Jul 11, 2024

MQ Web Console should have the option to configure SSL certificates using IBM Digital Certificate Manager (DCM) on IBM i.

The MQ web console starts with a self signed certificate that is all stored in a java keystore called key.jks.  All the documentation for updating and managing is keystore is written for Linux, AIX, and Windows.  The commands used don't work very well on IBM i.  The rest of MQ and other HTTP based services us certificates in IBM's Digital Certificate Manager (DCM).  It's very easy to manage certificates.  Since the web console doesn't use DCM, we have to export and manage the same certificates in multiple locations.  We are having issues getting a non-self signed certificate to work in the MQ console and have an IBM case opened for troubleshooting.  IBM support like the idea of using DCM and making the console run more like a native web application on IBM i.  

Idea priority Medium
  • Guest
    Reply
    |
    Sep 3, 2024

    I was told this was not possible in the IBM case that was opened and that an idea should be opened. Can you give details as to where the properties file is located that should be updated with the information below? DCM doesn't normally require passwords. Therefore, where did you get the password or is the exact code snippet below what is require since the same code is used else where in the admin HTTP server. If IBM has a configuration document on how to configure the MQ Web Console with DCM, that would be preferred. By default, the MQ web console should come preconfigured using DCM on installation since it is running on an IBM i and DCM is where all certificates are managed.

  • Admin
    Mark Taylor
    Reply
    |
    Sep 3, 2024

    The team responsible for Liberty (the webserver underlying the Console) say that they believe this already works by pointing the server configuration at the CMS keystore that DCM uses under the cover located for example in /QIBM/USERDATA/ICSS/CERT/Server/DEFAULT.KDB

    They provided this snippet:

    <keyStore id="KeyStoreByWebAdmin" location="/QIBM/USERDATA/ICSS/CERT/Server/DEFAULT.KDB" password="{xor}Lz4sLChvLTs=" provider="IBMi5OSJSSEProvider" type="IBMi5OSKeyStore"/>
    <ssl id="SSLSettingsByWebAdmin" keyStoreRef="KeyStoreByWebAdmin" serverKeyAlias="IBM CA Server/Client Certificate" sslProtocol="TLSv1.3" trustStoreRef="KeyStoreByWebAdmin"/>
    <httpEndpoint host="*" httpPort="-1" httpsPort="2012" id="HttpEndpointByWebAdmin" >
    <sslOptions sslRef="SSLSettingsByWebAdmin"/>
    </httpEndpoint>