How to Secure IBM Web servers with SSL install/configuration
Secure Servers with SSL Implementation : Taking example as IHS and configuring secure website in WebServer. Installing SSL on HIS 1)Open ./ikeyman.sh utility from AppServer to create .kdb file Create a new key database file , Default will be CMS Edit filename Ex:hostname-key.kdb Input password and select stash password to a file 2) Create a self signed certificate Fill the details of Self Signed cert 3) Edit the following in httpd.conf and restart http serv 1 2 3 4 5 6 7 8 9 LoadModule ibm_ssl_module modules/mod_ibm_ssl.so Listen 443 <VirtualHost *:443> SSLEnable #SSLProtocolDisable SSLv2 </VirtualHost> KeyFile /opt/IBM/HTTPServer/cert/sunnysite.kdb SSLStashFile /opt/IBM/HTTPServer/cert/sunnysite.sth SSLDisable Now try your website url with https. To support encrypted connections, create a self-signed certificate and then configure IBM HTTP Server for encrypte...