Keytool is a key and certificate management utility which is used to manage Java Keystores. It is shipped with Java.
Questions tagged [keytool]
49 questions
2
votes
0 answers
Extract cert and private key from JKS keystore to use it in Apache2 httpd
I tried to find this but no luck. I created a JKS keystore and generated a CSR, then imported the signed cert and intermediate and root CA certs. Used this keystore on Tomcat without problems.
Now I want to use the same cert for Apache2 http server…

momo
- 121
- 1
- 3
1
vote
1 answer
openssl and keytool conflict in PEM
I have created a self-signed certificate in nginx server in ubuntu as below:
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/nginx-selfsigned.key -out /etc/ssl/certs/nginx-selfsigned.crt
Coverted crt to pem using…

Jasmine
- 243
- 1
- 3
- 9
1
vote
0 answers
Keystore + CSR created on dev system does not work on remote (AWS) Tomcat
I am facing very odd situation. I have created keystore + CSR using keytool command in my local/dev machine.
I got the SSL certificate from https://www.thawte.com/. I have successfully imported cert and configured on local/dev tomcat. And It shows…

Prabhat Subedi
- 121
- 1
- 7
1
vote
1 answer
WildFly with client certifactes: javax.net.ssl.SSLException: Received fatal alert: unknown_ca
I'm trying to install a wildfly9 server with client certificate authorization. To do that I have:
On the Client: Create a self signed certificate:
keytool -genkey -keystore client.keystore -validity 3650
-keyalg RSA -keysize 4096 -storetype…

Steffen
- 989
- 3
- 13
- 31
1
vote
1 answer
How do I setup a Letsencrypt ssl on Xeams mail server?
First, I was able to successfully setup a letsencrypt certificate on an Ubuntu 14.0.4 server for my domain, and I confirmed everything was okay, by verifying I could access my domain via https and checking that I really did have the correct files…

Feyisayo Sonubi
- 123
- 8
1
vote
1 answer
Can I import an SSL certificate that was created by the CA into my Java keystore?
I'm trying to import a CA-signed certificate into a Java keystore. All the instructions I can find for this tell me to first create a keystore and a signing request (CSR) using the Java keytool, then have the CSR signed by the CA, and then import…

Joe7
- 143
- 1
- 6
1
vote
1 answer
Configuring dovecot and postfix ssl setting by jks file
I have CA JKS (Java Keystore) file which the CA bundle was added to it completely and we don't have any problem with java stuffs.
Now how may I export/manipulate, keys and required stuffs for setting up the dovecot and postfix ssl settings (with ca)…

TomIAm
- 13
- 2
1
vote
0 answers
SSL error, unable to find valid certification path to requested target
I'm new to ssl so forgive me.
I set up a site with ssl and all the online checks (eg. https://ssltools.websecurity.symantec.com/checker/views/certCheck.jsp) show that it is set up correctly and the site runs fine in the browser.
The site uses a…

David North
- 11
- 1
1
vote
1 answer
Unable to convert JKS keystore to Oracle Wallet using orapki
I have generated jks keystore using keytool and using the jks keystore I have csr. The same csr I have sent to Signing authority.
The Signing authority have given the trusted certificates(root,intermediate and server) which I have imported using…

user2164574
- 11
- 1
- 2
1
vote
1 answer
Generate a certificate with Openssl and import the same certificate using keytool
I have a question about the SSL during the use of CAS in LIferay.
I have generate the certificate using Openssl (I flollowed this tutorial) on my CAS Server and now I would to import the certificate using keytool on the Liferay machine.
To import…

Safari
- 155
- 1
- 2
- 7
1
vote
0 answers
Create jks for tomcat using .key ,.ca and .cert file
I have three file sample.cert, sample.CA,sample.key provided by Verisign. I need to create keystore for tomcat. As I searched I cannot use .key file directly to create keystore.
The command I used is below :
pkcs12 -export -in sample.cert -inkey…

kundan bora
- 111
- 3
1
vote
2 answers
how to install ssl on tomcat 7?
I know this question might sound too easy and I should had read all docs available on internet, the true is that I did, and I had no luck, its kinda confusing for me, I have installed many times this thing but for Apache, never for Tomcat.
I want to…

user156355
- 99
- 1
- 3
- 9
1
vote
1 answer
Installing SSL Thawte Certificates for tomcat from pre-generated Private Key
I have received a Bunch of SSL certificates that i need to install into tomcat servers, and normally this is easy enough. However, these certificates have had their private keys generated elsewhere and handed over with the private keys and all the…

vcetinick
- 113
- 1
- 5
1
vote
1 answer
SSL connection issue with s_client
I'm trying to configure SSL on two machines (on LAN) from a local CA I created and am hitting an issue when testing with s_client, I can't seem to locate helpful info w/ my google-fu skills. I'm trying to familiarize myself with info security and…

Crushing
- 111
- 1
- 4
1
vote
1 answer
How to include chain.cer in a keystore file?
I would like to create a keystore file with a certificate and a chain.cer file.
# openssl pkcs12 -export -chain -CAfile chain.cer -in example.cer -inkey example.key -out keystore.jks -name tomcat -passout pass:changeit
Error unable to get issuer…

Sandra
- 10,303
- 38
- 112
- 165