Posts

Showing posts with the label Jenkin

Enable SSL in Jenkin without using a key store password

  Enable SSL in Jenkin without using a key store password on Windows Operating System            Use Jenkins start-up parameters  -- httpsPort --httpsCertificate –httpsPrivateKey         Request New certificate and Password from Support Team or generate with 3rd Party Vendor. Certificate need to be in .pfx format.        Copy the newly created .pfx file to any location on the server.        Install OpenSSL on the Server.       Open the Command Prompt and got to “C:\Program Files\cURL” & Run the below command one by one. ·          Extract private key             openssl pkcs12 -in "C:\Temp\Certificate\Certificate\<certName>.pfx" -nocerts -nodes -out "C:\Temp\Certificate\Certificate\<private KeyName>.key"              Enter password when prompted.   ·          Extract certificate             openssl pkcs12 -in "C:\Temp\Certificate\Certificate\<certName>.pfx" -nokeys -out "C:\Temp\Certificate\Certificate\<certName>..crt"