Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

How to combine and convert certificates to other format

Hi All,
I am running a java program for automatic deallocation of Qliksense license in the Qliksense server.

I don't know java but successfully tested, completed the program in DEV.


Need to implement the same in UAT and then in PROD.


I want to convert the certificates as mentioned in the below statements. I did not understand. Could you help me.

Convert the server certificate into a truststore with password (e.g. “password123”) and put it under resources/certificate with filename “server-truststore.jks”

Convert the client.pem & client.key to “. PKSC12” file and create a Keystore with password (e.g. “password123”) and put it under resources/certificate with filename “client.p12”

Below Server, certificates are different for each environment.
client.pem,client_key.pem,root.pem,server.pem,server_key.pem


Please help me.

Labels (2)
1 Reply
Levi_Turner
Employee
Employee

This is not really a Qlik specific question, right? This is a generic "how do I create a p12 file" style of question.

That being said, this Stackoverflow post seems quite relevant:

openssl pkcs12 -export -out client.p12 -inkey client_key.pem -in client.pem

Cheers