keytool -genkey error: Keystore file does not exis

2019-03-11 09:44发布

I try to create a new self certified keystore file

The command I use is:

keytool -genkey -selfcert -dname "cn=My Name, ou=Orga unit" -alias selfcertified -keypass somepass -keystore keystore.jks -storepass anotherpass -validity 365

but I always get this annoying error:

keytool error: java.lang.Exception: Keystore file does not exist: keystore.jks

I do not understand why I'm getting this error. The command above should create a new keystore, so why is it complaining about a non existing store?

3条回答
一纸荒年 Trace。
2楼-- · 2019-03-11 10:37

Generating a key pair (and a new keystore) has to be done as a separate operation to creating a self-signed certificate for that key.

i.e.

keytool -genkey -alias myKey -keystore store.jks
keytool -selfcert -alias myKey -keystore store.jks
查看更多
放我归山
3楼-- · 2019-03-11 10:37

Run command prompt as Administrator and it will be done.

查看更多
我只想做你的唯一
4楼-- · 2019-03-11 10:37

-selfcert option was made obsolete in keytool for Java 6. Check the last section of "Changes" here: Java 6 Keytool

So for Java 6 and onwards, replace -selfcert with -certreq

查看更多
登录 后发表回答