初期コマンドで必要なすべてのパラメーターを指定することにより、SSL証明書要求を作成する方法はありますか?CLIベースのWebサーバーコントロールパネルを作成していますが、可能であれば実行時にexpectの使用を避けたいと思いますopenssl
。
これは、証明書要求を作成する一般的な方法です。
$ openssl req -new -newkey rsa:2048 -nodes -sha256 -keyout foobar.com.key -out foobar.com.csr
Generating a 2048 bit RSA private key
.................................................+++
........................................+++
writing new private key to 'foobar.com.key'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:US
State or Province Name (full name) [Some-State]:New Sweden
Locality Name (eg, city) []:Stockholm
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Scandanavian Ventures, Inc.
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:foobar.com
Email Address []:gustav@foobar.com
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:FooBar
私は次のようなものを見たいと思っています:(動作し ない例)
$ openssl req -new -newkey rsa:2048 -nodes -sha256 -keyout foobar.com.key -out foobar.com.csr \
-Country US \
-State "New Sweden" \
-Locality Stockholm \
-Organization "Scandanavian Ventures, Inc." \
-CommonName foobar.com \
-EmailAddress gustav@foobar.com \
-Company FooBar
すばらしいmanページには、この件に関して何も言うことはなく、Googleで何かを見つけることもできませんでした。SSL証明書要求の生成は対話型プロセスである必要がありますか、または単一のコマンドですべてのパラメーターを指定する方法がありますか?
これは、Debianから派生したLinuxディストリビューションで実行されていopenssl 1.0.1
ます。
2
jamescoyle.net/how-to/...
—
ceejayoz
@ceejayoz:とても素敵です、ありがとう。א)これらの
—
dotancohen
openssl
フラグはどこに文書化されていますか?ב)それを見つけるために何をGoogleで探しましたか?ありがとうございました!
「CSR生成スクリプト」を検索しました。
—
ceejayoz 14
-subj
パラメータがで(あまり詳しく)文書化されているopenssl.org/docs/apps/req.html。
通常はと呼ばれる設定ファイルを作成することもできます
—
sebix 14
openssl.cnf
。