Exporting SSL certificates for IIS

IIS requires a .pfx format to import. I will show you two commands Command to export a SSL certificate from Tomcat to IIS keytool -importkeystore -srckeystore certificates.ks -srcstoretype JCEKS -destkeystore jordansphere.pfx -deststoretype PKCS12 Note: You'll need the original keystore password for the export.  Command to export a SSL certificate from Apache to IIS openssl pkcs12 -export Read More…

The file type is not recognizable. Select another file – Import pfx file into IIS

I wanted to move a wildcard SSL certificate from Apache to IIS 7.5. From the server running Apache server I exported it using: openssl pkcs12 -export -out jordansphere.pfx -inkey jordansphere_cert.key -in jordansphere_cert.pem I then FTP'd this to my IIS server and tried to import. However, this message appeared: "The file type is not recognizable. Select Read More…

Enable SNMP FreeBSD

1) Install Net-SNMP # cd /usr/ports/net-mgmt/net-snmp # make install clean   2) Create SNMP conf file # vi /usr/local/share/snmp/snmpd.conf syscontact [email protected] rocommunity public 10.0.0.1/24 syscontact Jordansphere syslocation London   3) Start SNMP service # /usr/local/etc/rc.d/snmpd start   4) Input line in rc.conf so it starts on a reboot # vi /etc/rc.conf snmpd_enable="YES"      

Install Telnet Client via CLI on Windows 7

To install the Telnet client on a Windows 7 machine Click the Start menu -> Type cmd into the search box. Open the command prompt. Type the following: pkgmgr /iu:”TelnetClient”   Alternatively if you want to install via the GUI; Go to Control Panel -> Programs & Features -> Turn Windows features on or off Read More…