我正在尝试使用Java密钥库工具自动生成密钥库。我正在使用的命令是:
keytool -keystore keystore -alias jetty -genkey -keyalg RSA
但是在执行此命令后,要求用户按如下方式输入某些输入:
Enter keystore password: password
What is your first and last name?
[Unknown]: jetty.mortbay.org
What is the name of your organizational unit?
[Unknown]: Jetty
What is the name of your organization?
[Unknown]: Mort Bay Consulting Pty. Ltd.
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=jetty.mortbay.org, OU=Jetty, O=Mort Bay Consulting Pty. Ltd.,
L=Unknown, ST=Unknown, C=Unknown correct?
[no]: yes
Enter key password for <jetty>
(RETURN if same as keystore password): password
不用用户输入这些值,有没有办法在命令内或通过脚本在没有用户交互的情况下提供这些值?
谢谢