clientkeystore访问被拒绝 [英] clientkeystore Access is denied

查看:346
本文介绍了clientkeystore访问被拒绝的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我想使用keytool创建密钥库时,出现访问被拒绝的错误消息.见下文

When I want to create a keystore with keytool, I get an access denied error message. See below

PS C:\Program Files\Java\jdk1.8.0_144\bin> .\keytool.exe -keystore clientkeystore -genkey -alias client
Enter keystore password:
Re-enter new password:
What is your first and last name?
  [Unknown]:  ...
What is the name of your organizational unit?
  [Unknown]:  ...
What is the name of your organization?
  [Unknown]:  ...
What is the name of your City or Locality?
  [Unknown]:  ...
What is the name of your State or Province?
  [Unknown]:  ...
What is the two-letter country code for this unit?
  [Unknown]:  ..
Is CN=..., OU=..., O=..., L=..., ST=..., C=.. correct?
  [no]:  yes

Enter key password for <client>
        (RETURN if same as keystore password):
Re-enter new password:
keytool error: java.io.FileNotFoundException: clientkeystore (Access is denied)
PS C:\Program Files\Java\jdk1.8.0_144\bin>

我该如何解决?

推荐答案

我能够在JDK 1.8.0_171上重现此问题,然后对其进行解决.

I was able to reproduce this on JDK 1.8.0_171 and then resolve it.

基本上,您将由于写入文件而被拒绝访问:

Basically, you are getting an access denied for writing the file:

C:\Program Files\Java\jdk1.8.0_144\bin\clientkeystore

您需要执行以下一项操作:

You need to do one of the following:

从主目录运行命令,并指定密钥库二进制文件的完整路径.

Run the command from your home directory and specify the full path to the keystore binary.

PS> cd $HOME;
PS> C:\Program Files\Java\jdk1.8.0_144\bin\keytool.exe -keystore clientkeystore -genkey -alias client

指定具有写访问权的clientkeystore文件的路径.在此示例中,我使用您的主目录:

Specify a path to the clientkeystore file which you have write access to. In this example I am using your home directory:

PS> cd C:\Program Files\Java\jdk1.8.0_144\bin
PS> .\keytool.exe -keystore $HOME\clientkeystore -genkey -alias client

(我建议这样做)将JDK bin目录附加到您的Path环境变量中,并指定一个您可以访问的目录:

(I would recommend this) Append the JDK bin directory to you Path environment variable and also specify a directory which you have access to:

PS> $env:Path += "C:\Program Files\Java\jdk1.8.0_144\bin"
PS> keytool.exe -keystore $HOME\clientkeystore -genkey -alias client

完成.

这篇关于clientkeystore访问被拒绝的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆