Every Enterprise has the necessity to encrypt the data which traverses the internet. Using secured communication has not proved to be the most secure way to transmit corporate data, so enterprises have gone a step ahead to get specific third party certificates like SSL, PFX etc. These third party certificates ensures that the corporate data is encrypted in such a way, that only the recipient who owns the certificate can decrypt it. Application Control Plus supports using SSL and PFX certificates. Adding these certificates to Application Control Plus will secure the communication between the Application Control Plus server, managed computers and mobile devices.
This certificate is valid for a specified term. If the certificate expires, then the communication between the Application Control Plus agent and the server will no longer be secure.
Follow the steps mentioned below to create/renew and upload 3rd Party Certificates:
To create CSR and Key files, follow the steps mentioned below:
In <installation_directory>\DesktopCentral_Server\apache\bin, create a file named opensslsan.conf, and copy the following code into the file:
[ req ]
prompt=no
default_bits = 2048
distinguished_name = req_distinguished_name
req_extensions = req_ext
[ req_distinguished_name ]
countryName =
stateOrProvinceName =
localityName =
organizationName =
commonName =
[ req_ext ]
subjectAltName = @alt_names
[alt_names]
DNS.1 =
DNS.2 =
DNS.3 =
Enter the Subject Alternative Name (SAN) of your website next to DNS.1, DNS.2, etc. in the code one by one. You can have many SAN for a single certificate. You can add more SAN by adding DNS.4, DNS.5, and so on, at the end of the code. Here is an example:
[ req ]
prompt=no
default_bits = 2048
distinguished_name = req_distinguished_name
req_extensions = req_ext
[ req_distinguished_name ]
countryName = IN
stateOrProvinceName = TN
localityName = Chennai
organizationName = ZOHO
commonName = www.zoho.com
[ req_ext ]
subjectAltName = @alt_names
[alt_names]
DNS.1 = *.domain.com
DNS.2 = manageengine.com
DNS.3 = ems.com
DNS.4 = desktopcentral.com
Note: Do not delete private.key file under any circumstances.
You have successfully imported the third party certificates to Application Control Plus server. These certificates will be used only when "HTTPS" mode is enabled for communication. Click Admin tab and choose Server Settings, to enable https mode under General Settings. You can now see that the communication between the Application Control Plus Server and the agents is secure.
Ensure that the pfx file or .cert file should match the NAT address specified in the Application Control Plus server. If Application Control Plus and ServiceDesk Plus server are installed in the same computer, then the same pfx file will work. In the above listed case, if ServiceDesk Plus server is moved to a different computer, then the pfx needs to be modified to specify the appropriate host name.