OpenSSL ile CSR Oluşturma
Standart CSR Oluşturma
# 2048-bit RSA key ve CSR oluştur
openssl req -new -newkey rsa:2048 -nodes -keyout domain.key -out domain.csr
İstenecek bilgiler:
- Country Name (C): TR
- State (ST): Istanbul
- Locality (L): Istanbul
- Organization (O): Firma Adı
- Organizational Unit (OU): IT (opsiyonel)
- Common Name (CN): www.example.com
Wildcard CSR
openssl req -new -newkey rsa:2048 -nodes -keyout wildcard.key -out wildcard.csr -subj "/C=TR/ST=Istanbul/L=Istanbul/O=Firma/CN=*.example.com"
Mevcut Key ile CSR Oluşturma
openssl req -new -key existing.key -out domain.csr
CSR Kontrol
openssl req -text -noout -verify -in domain.csr
Önemli: Private key (.key) dosyanızı güvenli saklayın. Kaybederseniz sertifikayı yeniden düzenlemeniz (reissue) gerekir.