Generating a Certificate Signing Request (CSR)

This howto describes the instructions to generate a CSR for your Web site. In this guide I use OpenSSL.

Step-1: Create a RSA private key for your Apache server, PEM-formatted:

#openssl genrsa -des3 -out .key 2048

It will ask for a pass phrase, provide a pass phrase of your own here.

Step-2: Create a Certificate Signing Request using the RSA private key created above (output will be PEM format):

#openssl req -new -key .key -out .csr

Note that the Common Name field is the field where the domain name should be stated.

If you want to read your generated .csr file, then issue the following command
#openssl req -text -noout -in .csr

How to remove a Hidded Network Adaptor from windows pc


Step-1: Type the following commands at a command prompt
set DEVMGR_SHOW_NONPRESENT_DEVICES=1


Step-2: Open Device Manager enable "Show Hidden Devices" from the View Menu bar

Step-3: Locate the hidden device and uninstall it.

Step-4: Reboot the pc