An option has been made available in version 1.4 to trust insecure certifiates. This option is helpful for test environments, for example.
To allow trust for insecure certificates you will need to directly modify a file from the host command line using the following steps:
- Switch to the icdx user defained at installation, by default it is icdx:
sudo -su icdx
- Change directory to the needed location:
cd $SYMC_HOME/repo/other/id_epmp_dx/
- Edit the .metadata file and change requirement from "system" to "required" in the "insecure" section:
- From:
"insecure": {
"name" : "Insecure",
"desc" : "Enable this for LDAPS to always trust the certificate of the AD server (for test environments).",
"requirement": "system",
"type" : "boolean",
"default" : false
}
- To:
"insecure": {
"name" : "Insecure",
"desc" : "Enable this for LDAPS to always trust the certificate of the AD server (for test environments).",
"requirement": "required",
"type" : "boolean",
"default" : false
}
- Save the file.
With the file modified, refresh the Settings > Active Directory page in the web interface and the Insecure configuration setting will now be available. Enable the Insecure toggle and save the configuration.
