How to Displaying the One Identity Manager Service log file with https - securely

Hello 

Could you help me somebody?

The default configuration is:     http://<server name>:<port number>        The default value is port 1880

We woud like to use with https secure protocol   -    or with ssl.

How can I configure the IIS server   -   or the   -    Job Service Configuration   -    Configuration session  -   to access and see this service log file with securely (https)

For example:  https://localhost:1880/#/        insted of the default setting:    http://localhost:1880/#/

Thank you and best regards

Ferenc

  • Hi Ferenc,

    Here are my notes on how to do this ..... hope it helps.

    Barry.

    Bind a certificate to JobServer Service so it supports HTTPS

    You can follow this guide

    docs.microsoft.com/.../how-to-configure-a-port-with-an-ssl-certificate

    the steps i took in powershell

    netsh <rtn>
    http <rtn>
    add sslcert ipport=0.0.0.0:1880 certhash=446ecda41e6cf201357b2046606cc3e8ba06c150 appid={00112233-4455-6677-8899-AABBCCDDEEFF} <rtn>

    the only bit you need to change is the certhash, which is just the thumbprint of your certificate (less the spaces)

    the appid is any valid guid, so you can copy the above.

    Example commands:

    netsh http show sslcert

    netsh http show sslcert > D:\Certificates\NetshBackup_BeforeChange_2021-11-22.txt

     

    Netsh http delete sslcert ipport=0.0.0.0:1880

    Netsh http delete sslcert ipport=0.0.0.0:1881

    Netsh http delete sslcert ipport=172.21.80.47:1880

    Netsh http delete sslcert ipport=172.21.80.47:1881

     

    netsh http add sslcert ipport=0.0.0.0:1880 certhash=‎efe6b87402fba47aeea4676412c56f1daa9bfb98 appid={00000000-0000-0000-0000-000000000000}

    netsh http add sslcert ipport=0.0.0.0:1881 certhash=‎efe6b87402fba47aeea4676412c56f1daa9bfb98 appid={00000000-0000-0000-0000-000000000000}

    netsh http add sslcert ipport=172.21.80.47:1880 certhash=‎‎‎efe6b87402fba47aeea4676412c56f1daa9bfb98 appid={00000000-0000-0000-0000-000000000000}

    netsh http add sslcert ipport=172.21.80.47:1881 certhash=‎efe6b87402fba47aeea4676412c56f1daa9bfb98 appid={00000000-0000-0000-0000-000000000000}

     

    netsh http show sslcert > D:\Certificates\NetshBackup_AfterChange_2021-11-22.txt