Tagged: windows

.PFX certificate installation on Apache

- by admin

I have got a PFX made with Windows Certificate Services to be installed on Apache. So, using OpenSSL the file (source.pfx) has been converted to Apache compatible format:
openssl pkcs12 -in source.pfx -clcerts -nokeys -out dest.cer

openssl pkcs12 -in source.pfx -nocerts -nodes -out dest.key

The first command extracts public key to dest.cer, the second one extracts private key to dest.key.

The last but not the least is to update Apache configuration file:
<VirtualHost 192.168.0.1:443> 
...
SSLEngine on
SSLCertificateFile /path/to/dest.cer
SSLCertificateKeyFile /path/to/dest.key
...

and to restart Apache :-)

IBM ThinkVantage System Update Failure

- by admin

Error:

I have got "Unable to connect to proxy server" error while running IBM Think Vantage System Update. OS is Windows 7.

Fix:

Internet Explorer: Tools => Internet Options => Connections => Lan Settings: uncheck "Use a Proxy Server" and "Use automatic configuration script"

« All tags