EnsimX Pro does not load new ssl certificate.
September 3rd, 2007 by vickyDespite 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 | No Comments »