1.モジュールの確認
1-1.mod_sslがあるか確認する
まずはいったんモジュールが存在しているかを確認する
httpd -M
2.mod_ssl
2-1.mod_sslのインストール
モジュールがインストールされていない場合は以下のコマンドでインストールを行う
yum install -y mod_ssl
出力結果は以下となる。
Loaded plugins: fastestmirror, security Setting up Install Process Loading mirror speeds from cached hostfile * base: ftp.iij.ad.jp * epel: ftp.iij.ad.jp * extras: ftp.iij.ad.jp * updates: ftp.iij.ad.jp Resolving Dependencies --> Running transaction check ---> Package mod_ssl.x86_64 1:2.2.15-60.el6.centos.6 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================================================================================ Package Arch Version Repository Size ============================================================================================================================================================================================================ Installing: mod_ssl x86_64 1:2.2.15-60.el6.centos.6 updates 99 k Transaction Summary ============================================================================================================================================================================================================ Install 1 Package(s) Total download size: 99 k Installed size: 187 k Downloading Packages: mod_ssl-2.2.15-60.el6.centos.6.x86_64.rpm | 99 kB 00:00 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : 1:mod_ssl-2.2.15-60.el6.centos.6.x86_64 1/1 Verifying : 1:mod_ssl-2.2.15-60.el6.centos.6.x86_64 1/1 Installed: mod_ssl.x86_64 1:2.2.15-60.el6.centos.6 Complete!
再度、下記のコマンドをたたいて、ssl_moduleがインストールされていることを確認する
httpd -M
ssl_moduleがあればインストール成功
・・・省略 ssl_module (shared) ・・・省略
インストールされると、/etc/httpd/conf.d/ssl.confが作成されるため、証明書などを適切な項目に設定する。
以上