Both the HTTP and HTTPS protocol are supported for License Server and are enabled by default. We recommend that you connect via HTTPS to ensure secure, encrypted communication between License Server and the Parasoft products.
HTTPS requires a signed SSL certificate. License Server ships with a self-signed SSL certificate, which is used by default. Alternatively, you can use a custom self-signed or commercially-signed certificate; see Enabling Custom SSL.
The default Parasoft self-signed SSL certificate is shipped with License Server in a .keystore file. To use a custom SSL certificate:
stopLS
script to stop the server.$LS_INSTALL/tomcat/conf
.startLS
scripts to start License Server.If you do not already have a .keystore file available, you can generate one by executing the following command:
keytool -genkey -keyalg RSA -alias selfsigned -keystore keystore.jks -storepass password -keysize 2048 |
This will create a keystore containing a private key and a self-signed certificate named keystore.jks with the password password
. The -keysize
setting is optional. The default keysize is 1024
.
selfsigned
.You can obtain commercial certificates from a certificate authority (CA), such as verisign.com or thawte.com by submitting a certificate signing request (CSR) to the CA.
Use the following command to create the CSR:
keytool -certreq -alias selfsigned -keystore keystore.jks -file cer- treq.csr |
selfsigned
.The CA will return a Root or Chain certificate and the newly-signed certificate—both of which must be imported into your keystone. Use the following command to import your root certificate:
keytool -import -alias root -keystore keystore.jks -trustcacerts - file <filename_of_the_chain_certificate> |
Use the following command to import the new certificate:
keytool -import -alias dtp -keystore keystore.jks -file <your_certificate_filename> |
You do not need to modify any protocol settings. However, should you want to disable support for HTTPS, go to $LS_INSTALL/tomcat/LicenseServer/conf/PSTSecConfig.xml
, and replace the default HTTPS protocol with HTTP:
<pstsec-config><remote-authentication><protocol>http</protocol> </remote-authentication></pstsec-config>
.