Skip to content

SSL Server Certificate for HTTPS

When enabling SSL encryption, for the Web interface. You must ensure, that the certificate are trusted by the clients connecting. If you use Service now integration. This must be a Public trusted Certificate authority.

You’ll need a file that contains your server certificate, any intermediate certificates and the private key. Often, the private key isn’t part of the file delivered by your certificate authority. Instead, you may receive a file in the PKCS#7/P7B format. You must then yourself export the private key and certificates into a keystore in a format like PKCS#12/PFX, PEM or DER.

The following is an example of importing a PKCS12 keystore into PerformanceGuard. The PKCS#12 or PFX format is a binary format for storing the server certificate, any intermediate certificates and the private key in one encryptable file. PFX files usually have extensions such as .pfx and .p12. PFX files are typically used on Windows computers to import and export certificates and private keys. PFX files are password-protected, and you need the password to install the certificate file.

During installation Check the “Use SSL”. When this is done, Display ports are changed to use default SSL ports. For Primary display Port, and 8443 for secondary display port.

Browse to choose your Certificate, and enter Password.

Configuration settings is stored, in a configuration file. Located in the root of your Performanceguard server installation.

  • Configuration File : “Installation Path”\Settings.ini

Settings to look for:

  • MERLINPORT : Primary Display Port number. (Default 443)
  • PGUARDPORT : Secondary Display Port number. (Default 8443)
  • SSL_KEY_STORE_PATH : Full path to your Certificate.
  • SSL_KEY_STORE_PASSWORD : Encrypted password, for your certificate. (Can not be empty)
  • PGUARDSECURE : true/false (Default true)

Change Launch conditions for display2:

  1. Stop Display services (pgdisplay and pgdisplay2)
  2. Launch “Installation Path”\display2\pgdisplay2w.exe
  3. Goto Startup
  4. Change Argument display2.yml to display2-ssl.yml
  5. Apply and start Display services (pgdisplay and pgdisplay2)

If you configure the PerformanceGuard web interface to use HTTPS connections, the web interface is by default installed with a self-signed server certificate. Communication between web browsers and the web interface will be encrypted with SSL, but browsers will complain that the certificate isn’t trusted. To resolve this security issue, you must install your own server certificate that’s signed by a trusted authority (such as VeriSign or Symantec).

You’ll need a file that contains your server certificate, any intermediate certificates and the private key. Often, the private key isn’t part of the file delivered by your certificate authority. Instead, you may receive a file in the PKCS#7/P7B format. You must then yourself export the private key and certificates into a keystore in a format like PKCS#12/PFX, PEM or DER.

The following is an example of importing a PKCS12 keystore into PerformanceGuard. The PKCS#12 or PFX format is a binary format for storing the server certificate, any intermediate certificates and the private key in one encryptable file. PFX files usually have extensions such as .pfx and .p12. PFX files are typically used on Windows computers to import and export certificates and private keys. PFX files are password-protected, and you need the password to install the certificate file.

During installation check the Use SSL checkbox.

  • Primary Web Server Port: Change Value to a port of your choosing e.g. 443
  • Secondary Web Server Port: Change Value to a port of your choosing e.g. 8443
  • Use SSL: Check the box
  • Certificate File Path: Select the path to the certificate file on local machine
  • Certificate Password: Password of the certificate file

Manual SSL Server Certificate for HTTPS Install

Section titled “Manual SSL Server Certificate for HTTPS Install”

If you configure the PerformanceGuard web interface to use HTTPS connections, the web interface is by default installed with a self-signed server certificate. Communication between web servers and the web interface will be encrypted with SSL, but browsers will complain that the certificate isn’t trusted. To resolve this security issue, you must install your own server certificate that’s signed by a trusted authority (such as VeriSign or Symantec).

You’ll need a file that contains your server certificate, any intermediate certificates and the private key. Often, the private key isn’t part of the file delivered by your certificate authority. Instead, you may receive a file in the PKCS#7/P7B format. You must then yourself export the private key and certificates into a keystore in a format like PKCS#12/PFX, PEM or DER.

The following is an example of importing a PKCS12 keystore into PerformanceGuard. The PKCS#12 or PFX format is a binary format for storing the server certificate, any intermediate certificates and the private key in one encryptable file. PFX files usually have extensions such as .pfx and .p12. PFX files are typically used on Windows computers to import and export certificates and private keys. PFX files are password-protected, and you need the password to install the certificate file.

  1. Add the my_certificate.pfx to display folder of \[PerformanceGuard installation folder]\display:

  2. Edit \[PerformanceGuard installation folder]\display\conf\performanceguard.xml and change the values of the following parameters:

    • port: Change Value to a port of your choosing e.g. 8443
  • secure: Change value to true
  • keyStorePath: Configure path to keyStorePath i.e. <Parameter name=“keyStorePath” override=“false” value=“mykeystore.p12”/>
  • keyStorePassword: Add password to keyStorePassword i.e. <Parameter name=“keyStorePassword” override=“false” value=“$m3llycat”/>
  1. Add a keystore mykeystore.p12 to display2 folder of \[PerformanceGuard installation folder]\display2.

  2. Open \PerformanceGuard installation folder\display2\display2.yml and overwrite the # Server Settings section with the following:

    Terminal window
    # Server Settings
    server:
    rootPath: '/api/*'
    applicationContextPath: /
    applicationConnectors:
    - type: https
    port: 443
    maxRequestHeaderSize: 64KiB
    maxResponseHeaderSize: 64KiB
    keyStorePath: 'mykeystore.p12'
    keyStorePassword: '$m3llycat'
    validateCerts: false

    Then move down to the # Old Display Settings section and change the value of the following parameter:

    • hostPort: Change to the port that you set in step 2 (e.g. 8443)
    • hostSecure: Change value to true
    Terminal window
    # Old Display Settings
    classic:
    hostPort: '8443'
    hostSecure: 'true'
  1. Open \PerformanceGuard installation folder\notification\conf\config.properties and change the following parameters:

    Terminal window
    displaySsl=true
    displayPort=8443 (or which ever port you have used above)
  2. Save the files that you have edited and then restart the PerformanceGuard Web Server and PerformanceGuard Web Server 2 services.