Login over SSH to one of existing Cluster nodes.
You should check, where is your current configuration. Full path to current configuration in inside file: /opt/mwg/storage/active_configuration
cat /opt/mwg/storage/active_configuration
Change directory to current configuration:
cd `cat /opt/mwg/storage/active_configuration`
Enter "cfg" subdirectory:
cd cfg
Find file, where Cluster CA certificate is stored (switch for grep command is lowercase "L" letter):
grep -l "Cluster CA certificate" com.scur.engine.*
Grep command will return filename, where Cluster CA certificate is stored, eg:
com.scur.engine.sslclientcontext.1064.xml
CA certificate is in line starting with:
<configurationProperty key="CACert"
Key for this certificate is in line, but keep in mind, that this key is probably stored in encrypted form, so you cannot recover them to readable format:
<configurationProperty key="CAKey"
The values for CACert and CAKey are merged to one line. Replace "
" to a new line.
But probably creating a backup of existing configuration and restoring it to a new node, should restore also Cluster CA certificate with a matching key.