Search

Blogroll

Meta:

EnsimX Pro does not load new ssl certificate.

September 3rd, 2007 by vicky

Despite all efforts EnsimX Pro was still using old www.snakeoil.com certificate instead the one I generated/bought for use for apache ssl. I tried various ways how to fix this but epld service was refusing to start or the snakeoil certificate returned back after a few days.

Here is solution that fixes it :

First I generate self-signed certificate for apache ssl and consequently use it for connection with EnsimX Pro by issuing these commands:

on RHEL 4 /CentOS 4 box:

cd /usr/lib/ensim/frontend/httpd/conf/
mv server.crt server.crt-orig
mv server.key server.key-orig
ln -s /etc/httpd/conf/ssl.crt/server.crt server.crt
ln -s /etc/httpd/conf/ssl.key/server.key server.key
service epld restart

 on RHEL5/CentOS5 box:

cd /usr/lib/ensim/frontend/httpd/conf/
mv server.crt server.crt-orig
mv server.key server.key-orig
cp -f /etc/pki/tls/certs/localhost.crt /etc/httpd/conf/ssl.crt/server.crt
cp -f /etc/pki/tls/private/localhost.key /etc/httpd/conf/ssl.key/server.key
ln -s /etc/httpd/conf/ssl.crt/server.crt server.crt
ln -s /etc/httpd/conf/ssl.key/server.key server.key
service epld restart

Tadaaaaa… and it works :-)

Posted in Ensim |

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.