|
Before you can install your Trustwave certificate, you will first need to install the
intermediate certificates. You may download them using the links below:
Download the GlobalSign Root certificate
Download the GlobalSign Partners certificate
Download the TrustwaveCA certificate
You will need to use the keytool command to import the intermediate certificates:
// Import the GlobalSign Root first
keytool -import -trustcacerts -alias root -file GSRoot.crt -keystore your_domain.key
// Then import the GlobalSign Partners certificate
keytool -import -trustcacerts -alias gsint -file GSInt.crt -keystore your_domain.key
// Finally, import the Trustwave intermediate
keytool -import -trustcacerts -alias xrampca -file TrustwaveCA.crt -keystore your_domain.key
|