5 1 0:How to Replace the REST Server HTTPS Certificate and Private Key
Overview
By default, SEP sesam uses a self-signed SSL certificate and private key for its REST Server and Web UI access. It is created in the system's temporary folder when the REST Server is started, unless you have configured another HTTPS certificate to be used by REST services.
You can improve security of the REST Server for use with HTTPS by adding your company official certificate or another trusted certificate signed by a certification authority (CA). To change the SSL certificate used by SEP sesam REST services to access Web UI, you will need to use an administrator command line.
How certificate checks work
When the REST server starts, it performs the following certificate checks to find custom HTTPS certificates:
- If a certificate and the corresponding private key are specified via the command-line options ([-z|--sslCertificate] <absolute file name certificate>, [-k|--sslPrivateKey] <absolute file name private key>), the REST Server attempts to use the specified files first.
- Then it will look in the default location
<SESAM_VAR>/ini/ssl
(see Directory Layout for details) through a list of default file names: [sesam.https.crt and sesam.https.key]. - If a variable gv_ro_ssl exists in the SEP sesam Server configuration file
<SESAM_VAR>/ini/sm.ini
(section PATHES), this location is probed next using the default file names. - If a certificate and the corresponding private key are specified via the global environment variables (SESAM_SSL_CERT=<absolute file name certificate>, SESAM_SSL_KEY=<absolute file name private key>), the REST Server attempts to use the specified files.
If none of the attempts to find a certificate are successful, the HTTPS server is set up using a self-signed certificate when the REST Server is started.
Prerequisites
- To install the custom HTTPS certificate, you need to have Administrator rights to the SEP sesam Server machine and be able to write to the
<SESAM_VAR>/ini/ssl
directory. - The private key must be in PKCS8 format. If you have a key in another format, you need to convert it (using
openssl
) to PKCS8 before it can be used.
Steps
- Log in as root (Linux) or Administrator (Windows) to the SEP sesam Server console and enter the following command to stop the REST Server:
- Navigate to
<SESAM_VAR>/ini/ssl
. - Save the custom HTTPS certificate file as sesam.https.crt.
- Save the custom HTTPS certificate private key file as sesam.https.key.
- Start the REST Server:
- When restarting the REST server, monitor the sm_gui_server.log to make sure that everything works as expected. Look for a log message similar to this line:
- Once you have confirmed that the certificate setup has been logged, start the web browser and open the SEP sesam Web UI using the server name from the certificate: https://<server name>:11401/
sm_main stop rmi
sm_main start rmi
<date> <time> INFO <context> - Setting up HTTPS certificate from certificate file <SESAM_VAR>/ini/ssl/sesam.https.crt' (via default location lookup)
Verify that the web browser is trusting the HTTPS certificate.
See also
Configuring SSL Secured Communication for SEP sesam Backup Network – SEP sesam Web UI