To import certificates to trusted domains on Windows platforms
- Copy the certificate to the Windows computer on which the mangement console is running.
- Double-click the certificate to open the certificate details.
- On the General tab, click the Install Certificate and click Next.
The certificate import wizard starts.
- Select Place all certificates in the following store and click Browse.
- Select Trusted Root Certification Authorities and click OK.
- Click Next.
- Click Finish.
- Click OK when a message says the import was successful.
Note: You can also import certificates into a trusted domain by means of your browser.
To import certificates to trusted domains on Unix or Linux platforms
- As root, run the following commands:
cp server.crt /etc/ssl/certs
cp server.key /etc/ssl/private
SSL is enabled by default. A self-signed certificate is installed but you should replace it with a valid certificate for your organization. While not recommended, it is possible to disable SSL/TLS encryption entirely.
To disable SSL/TLS encryption
-
Add the following line to the custom.cfg file:
-Dssl.enabled=false
Note: All HTTPS traffic will be redirected to the HTTP port.
-
Update any browser bookmarks to specify the HTTP port number.
To customize HTTP and SSL/TLS ports
-
Add the following lines to the custom.cfg file:
-Dmcu.port.https=<port>
-Dmcu.port.http=<port>
where <port> is any port number not already in use on the machine hosting the server and -Dmcu.port.https is for SSL ports and -Dmcu.port.http is for non-SSL port.
Note: The Command Line utilities and Web Services do not work unless you connect with the non-secure (http) port which allows the utility to discover the secure port.
For more information about the Command Line utilities and Web Services, refer to these links:
See Setting custom configuration settings for general information about customizing configuration settings for the mangement console.