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 encrypted connection traffic.
Warning : If you use this certificate in production, users
will see warning messages from their browsers. In a typical production deployment, you
would use a certificate from a trusted certificate authority






Comments
Post a Comment
feel free to give feedback