Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 09-16-2008, 12:29 PM   #1 (permalink)
Please touch this.
 
Halx's Avatar
 
Owner/Admin
Location: Manhattan
How To: Export SSL Certificate from Linux to Windows IIS

How To: Export SSL Certificate from Linux to Windows IIS

I just had to figure this out by myself because the title of this thread returned no relevant results in Google. This is the quick and dirty. Hope you can follow along.

Step 1: pem file
You will need to log into your linux box and create a .pem file that contains your private key and your certificate hash. Your private key is usually in a .key file and your certificate is usually in a .crt file. Just paste the content of your key and certificate files into the same file (in that order, separated by a line break) and save it as "whatever.pem".

Step 2: p12 file
The p12 file is what IIS wants. To create it, use the following command in linux:

openssl pkcs12 -export -in whatever.pem -out whatever.p12 "Whatever Certificate"

You'll be asked to provide a password for the file. Remember it for the next step. After you've done this, transfer whatever.p12 to your windows server (FTP, anyone?).

Step 3: Import the p12 file in IIS
Go to the properties of your website in IIS, then into the Directory Security tab. Click on "Server Certificate" and select the "Import" option. When it asks you to find the file, make sure to change the scope to "All files" to find the p12. When you select the file, you'll be asked to enter the password you selected in step 2. Et voila! Successfully transferred SSL Certificate from Linux to Windows.

Don't forget to install a valid CA Root Certificate while you're at it. You can actually find a tutorial for that online though.
__________________
You have found this post informative.
-The Administrator
[Don't Feed The Animals]
Halx is offline  
Old 09-16-2008, 12:32 PM   #2 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
p12?? See, this is why I'm a LAMP guy.
ratbastid is offline  
 

Tags
certificate, export, iis, linux, ssl, windows


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 11:11 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73