Hi Scott,

This is the best practice to do the changes on other mirror members before doing on Primary member. Before making changes in your DR and Backup nodes, it's recommended to test the process in a controlled environment that mimics your production setup. Take a backup of IRISSYS.DAT before making any changes. This ensures that you have a recovery point in case anything goes wrong.

Hi Ankur,

If you want to open Management portal over IRIS internal apache then you need to follow below,

Modify below file

/iris_install_directory/httpd/conf/httpd-local.conf

Add ssl configuration like below (you need to have ssl certificate files) changing port as per your requirements

Listen 57773
<VirtualHost *:57773>
    SSLEngine on

            ServerName  fully_qualified_host_name

#   Server Certificate:

SSLCertificateFile /path_to_SSL_folder/filename.crt

#   Server Private Key:

            SSLCertificateKeyFile /path_to_SSL_folder /filename.key

#   Server Certificate Chain:

            SSLCertificateChainFile /path_to_SSL_folder /filename.crt

#   Certificate Authority (CA):

            SSLCACertificateFile /path_to_SSL_folder /filename.crt

</VirtualHost>

Restart instance, Management portal should open over ssl with port mentioned in above file.

https://fully_qualified_host_name:57773/csp/sys/UtilHome.csp

But but if you need to open this on OS apache then first you need to configure SSL at OS level. 

Regards

Kamal Suri