İlk komutta gerekli tüm parametreleri belirterek SSL sertifikası istekleri oluşturmanın bir yolu var mı? CLI tabanlı bir web sunucusu kontrol paneli yazıyorum ve mümkünse yürütme sırasında beklemenin kullanılmasını önlemek openssl
istiyorum.
Sertifika isteği oluşturmanın tipik bir yoludur:
$ 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
Böyle bir şey görmeyi umuyorum: (işsiz örnek)
$ 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
İyi adam sayfasının konuyla ilgili söyleyecek bir şeyi yoktu, ayrıca Google aracılığıyla hiçbir şey bulamadım. SSL sertifikası istek oluşturma etkileşimli bir işlem olmalı mı yoksa tüm parametreleri tek bir komutta belirtmenin bir yolu var mı?
Bu, Debian kaynaklı bir Linux dağıtımında çalışıyor openssl 1.0.1
.
openssl
bayraklar nerede belgeleniyor? ב) Bunu bulmak için ne yaptın? Teşekkür ederim!
-subj
Parametresinin (pek ayrıntılı olarak) belgelenmiştir openssl.org/docs/apps/req.html .
openssl.cnf
.