...
Code Block | ||||
---|---|---|---|---|
| ||||
sudo keytool -import -file ~/host.domain.tld_part-n.pem -alias <host.domain.tld|domain.tld_CA|tld_CA> -keystore $JAVA_HOME/jre/lib/security/cacerts
|
...
Note2, if you skipped here from step 4, replace the _part-n
suffix with _full-chain
in the -file
parameter of the command.
Note3, if enabled, you may be prompted for your sudo password, this is usually your admin password of the machine. if you are prompted for the Java Keystore password, the default is changeit
.
...