SSL初心者です。
keytool を使用して SSL 接続用のキーストアを作成しようとしています。まず、次のコマンドを試しました
[aniket@localhost bin]$ keytool -genkey -alias myKeyStore -keyalg RSA -keystore
/home/aniket/keystore
パスワードやその他の詳細を尋ねられ、最終的に次のエラーが表示されました
keytool error: java.io.FileNotFoundException: /home/aniket/keystore
(Is a directory)
そこで、キーストアフォルダー内にファイル keystoreFile.txt を作成して実行しました
[aniket@localhost bin]$ keytool -genkey -alias myKeyStore -keyalg RSA -keystore
/home/aniket/keystore/keystoreFile.txt
そして今(パスワードなどのプロンプトはありません)私は得ています
keytool error: java.lang.Exception: Keystore file exists, but is empty:
/home/aniket/keystore/keystoreFile.tx
ファイルの内容は何ですか。私はkeytoolが鍵ペア(公開鍵と関連する秘密鍵)を生成します