Fedora 30
Sponsored Link

SSL証明書を作成する (自己署名)2019/05/07

  SSL/TLS を用いた信頼性の高い通信経路を構築するために必要な証明書を作成します。
当例では自己署名の独自証明書を作成します。 しかし、自己署名の証明書はアクセス時に警告が出ます。 インストールしてしまえば問題はなく、内部ネットワークのみで使用する分には自己署名でも問題ない場合もありますが、 企業等で不特定多数向けに利用する場合は、正規の認証局が発行する信頼された証明書を利用した方がよいでしょう。
[root@dlp ~]#
cd /etc/pki/tls/certs

[root@dlp certs]#
openssl genrsa -aes128 2048 > server.key

Generating RSA private key, 2048 bit long modulus
.+++
...................................................................................+++
e is 65537 (0x010001)
Enter pass phrase:                  # パスフレーズ設定
Verifying - Enter pass phrase:      # 再入力

# 秘密鍵からパスフレーズを削除

[root@dlp certs]#
openssl rsa -in server.key -out server.key

Enter pass phrase for server.key:   # パスフレーズ入力
writing RSA key

[root@dlp certs]#
openssl req -utf8 -new -key server.key -out server.csr

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) [XX]:JP   # 国
State or Province Name (full name) []:Hiroshima    # 地域(県)
Locality Name (eg, city) [Default City]:Hiroshima  # 都市
Organization Name (eg, company) [Default Company Ltd]:GTS  # 組織名
Organizational Unit Name (eg, section) []:Server World     # 組織の部門名
Common Name (eg, your name or your server's hostname) []:dlp.srv.world  # サーバーのFQDN
Email Address []:root@srv.world   # 管理者アドレス

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

# 有効期限が10年の自己署名証明書を作成

[root@dlp certs]#
openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 3650

Signature ok
subject=C = JP, ST = Hiroshima, L = Hiroshima, O = GTS, OU = Server World, CN = dlp.srv.world, emailAddress = root@srv.world
Getting Private key
[root@dlp certs]#
chmod 600 server.key

[root@dlp certs]#
ll server.*

-rw-r--r--. 1 root root 1334 May  7 19:42 server.crt
-rw-r--r--. 1 root root 1062 May  7 19:42 server.csr
-rw-------. 1 root root 1675 May  7 19:41 server.key
関連コンテンツ