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
ユーザーがこれらの値を入力する代わりに、コマンド内またはスクリプトを通じて、ユーザーの介入なしにこれらの値を提供する方法はありますか?
ありがとう