I found this in a lab case,
When connecting the Data Protector Cell Manager on HP-UX using the Windows Data Protector Client GUI post the 8.11 patch bundle installation, the following error is displayed:
A server error has occurred. Reported error message: Unknown SSL protocol error in connection to <cell manager>: 7116.
The error occurs when a faulty Time-To-Live value of the SSL certificate is generated on the 8.10 Cell Manager.
Workaround:
Manually generate a new SSL certificate with the omnigencert.pl script from the command line. To do so, perform the following:
a.Get the store password by performing the following:
- Navigate to the webservice.properties file from the following location:
/etc/opt/omni/client/components
- Search for the keystorePassword value, for instance, consider that the keystorePassword = <store_password>.
b. Generate a new SSL certificate by executing the following command:
/opt/omni/bin/perl /opt/omni/sbin/omnigencert.pl -server_id <CellManagerHostname.domain.com> -user_id hpdp -store_password <store_password>
c. Restart the Data Protector services using the following command:
omnisv stop omnisv start
(Or)
Reload the jboss configuration using the following command:
/opt/omni/AppServer/bin/jboss-cli.sh -c --command="/:reload
==============
You can also just change the expiration date
changing the default expiration time in the omnigencert.pl script (line 440):
FROM: $g_default_expireDays = (365 * 24); # 24yrs. TO: $g_default_expireDays = (365 * 10); # 24yrs.
FROM: $g_default_expireDays = (365 * 24); # 24yrs. TO: $g_default_expireDays = (365 * 10); # 24yrs.