+ Post New Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 29
Windows Thread, Creating SSL certificates. in Technical; 'Sure we can I said', Ooops. Can anyone out there help me out with either: a. Free self certificate creating ...
  1. #1

    Dos_Box's Avatar
    Join Date
    Jun 2005
    Location
    Preston, Lancashire
    Posts
    8,294
    Blog Entries
    21
    Thank Post
    234
    Thanked 1,497 Times in 637 Posts
    Rep Power
    378

    Creating SSL certificates.

    'Sure we can I said', Ooops. Can anyone out there help me out with either:

    a. Free self certificate creating software
    b. A site which creates the for free.

    We need them for secure (HTTPS) Outlook Web Access to work, and needs to be Windows based.

  2. IDG Tech News

  3. #2
    Geoff's Avatar
    Join Date
    Jun 2005
    Location
    Fylde, Lancs, UK.
    Posts
    11,056
    Blog Entries
    1
    Thank Post
    104
    Thanked 439 Times in 380 Posts
    Rep Power
    114

    Re: Creating SSL certificates.

    Linux with OpenSSL installed. Here's a how:

    Code:
    openssl req -new -newkey rsa:1024 -days 365 -nodes -x509 -keyout www.example.com.pem  -out www.example.com.pem
    Enjoy. Just copy the pem file to your windows server when its cooked.

  4. #3
    DMcCoy's Avatar
    Join Date
    Oct 2005
    Location
    Isle of Wight
    Posts
    3,085
    Thank Post
    9
    Thanked 396 Times in 342 Posts
    Rep Power
    91

    Re: Creating SSL certificates.

    Quote Originally Posted by Geoff
    Linux with OpenSSL installed. Here's a how:

    Code:
    openssl req -new -newkey rsa:1024 -days 365 -nodes -x509 -keyout www.example.com.pem  -out www.example.com.pem
    Enjoy. Just copy the pem file to your windows server when its cooked.
    Can also be done on windows with openssl :P

    openssl exe is in this apache package:
    http://www.madhon.co.uk/modssl/modssl220_vc6.zip

  5. #4

    russdev's Avatar
    Join Date
    Jun 2005
    Location
    Leicestershire
    Posts
    7,122
    Blog Entries
    3
    Thank Post
    354
    Thanked 485 Times in 312 Posts
    Rep Power
    136

    Re: Creating SSL certificates.


  6. #5

    Join Date
    Oct 2005
    Location
    East Midlands
    Posts
    677
    Thank Post
    10
    Thanked 99 Times in 62 Posts
    Rep Power
    31

    Re: Creating SSL certificates.

    You can use your own dc (which is also i presume the CA for your domain) to do this.

    Have a look at www.isaserver.org for more info on how to do this. Its mostly to do with isa server but had some tutorials to create the certificate.

    From what i can gather, you need to go into IIS manager and right click on the default website and click on properties.

    Then go into the "Directory Security" tabe and under the "secure communications" section select the server certificate and follow the wizard.

    Take a look at this -->http://www.isaserver.org/articles/2004pubowartm.html


    HTH,

    Ash.

  7. #6

    Dos_Box's Avatar
    Join Date
    Jun 2005
    Location
    Preston, Lancashire
    Posts
    8,294
    Blog Entries
    21
    Thank Post
    234
    Thanked 1,497 Times in 637 Posts
    Rep Power
    378

    Re: Creating SSL certificates.

    Quote Originally Posted by russdev
    Not really. I want a server certificate for HTTPS. Not to certify my mail.

  8. #7

    Dos_Box's Avatar
    Join Date
    Jun 2005
    Location
    Preston, Lancashire
    Posts
    8,294
    Blog Entries
    21
    Thank Post
    234
    Thanked 1,497 Times in 637 Posts
    Rep Power
    378

    Re: Creating SSL certificates.

    Quote Originally Posted by ashok
    You can use your own dc (which is also i presume the CA for your domain) to do this.

    Have a look at www.isaserver.org for more info on how to do this. Its mostly to do with isa server but had some tutorials to create the certificate.

    From what i can gather, you need to go into IIS manager and right click on the default website and click on properties.

    Then go into the "Directory Security" tabe and under the "secure communications" section select the server certificate and follow the wizard.

    Take a look at this -->http://www.isaserver.org/articles/2004pubowartm.html


    HTH,


    That creates a requst for a certificate. You mail that to a certificate provider and they create your cert from that file.
    Ash.

  9. #8
    Geoff's Avatar
    Join Date
    Jun 2005
    Location
    Fylde, Lancs, UK.
    Posts
    11,056
    Blog Entries
    1
    Thank Post
    104
    Thanked 439 Times in 380 Posts
    Rep Power
    114

    Re: Creating SSL certificates.

    Try this then:

    http://www.dylanbeattie.net/docs/ope...ssl_howto.html

    Linux solution is less longwinded though

  10. #9
    ChrisH's Avatar
    Join Date
    Jun 2005
    Location
    East Lancs
    Posts
    4,810
    Thank Post
    89
    Thanked 212 Times in 195 Posts
    Rep Power
    83

    Re: Creating SSL certificates.

    I use the method ashok has linked to and its very easy to setup.

    Edit My own CA issues the certificate though.

  11. #10

    Join Date
    Jun 2005
    Location
    Elgin, Scotland
    Posts
    389
    Thank Post
    1
    Thanked 4 Times in 4 Posts
    Rep Power
    19

    Re: Creating SSL certificates.

    If not by Ashok's method, then there should be another method within Server 2k3 to greate your own certificate as I've done it using my Small Business Server to get an SSL certificate for Outlook Web Access & Remote Web Workplace.

  12. #11
    krb548's Avatar
    Join Date
    Jun 2005
    Location
    Preston, Lancashire
    Posts
    36
    Thank Post
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Re: Creating SSL certificates.

    I'm on the CASA Course @ Lancaster Uni, the tutor gave us this link a couple of months ago. See if it is of any use.

    StartCom Free SSL

    Fantastic. Thanks alot, it works a dream.

  13. #12

    Join Date
    Aug 2005
    Location
    Birmingham, UK
    Posts
    495
    Thank Post
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Re: Creating SSL certificates.

    You need to set up a Certificate Authority on your domain and issue yourself a certificate for SSL.

  14. #13
    mitcheln's Avatar
    Join Date
    Dec 2005
    Posts
    55
    Thank Post
    1
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Re: Creating SSL certificates.

    The IIS resource kit contains an application called SelfSSL, which I recently used to create a new self-signed certificate for an OWA installation whose certificate had expired. It worked for me.

  15. #14

    Dos_Box's Avatar
    Join Date
    Jun 2005
    Location
    Preston, Lancashire
    Posts
    8,294
    Blog Entries
    21
    Thank Post
    234
    Thanked 1,497 Times in 637 Posts
    Rep Power
    378

    Re: Creating SSL certificates.

    Now you tell me!!

  16. #15
    eejit's Avatar
    Join Date
    Jun 2005
    Location
    Ireland
    Posts
    593
    Thank Post
    43
    Thanked 11 Times in 11 Posts
    Rep Power
    18

    Re: Creating SSL certificates.

    I need this to work for OWA externally. The selfSSL works great within the domain, but we need something for home users. The security warning in IE7 'looks' much more serious than it did in IE6, any idea how to get a 'proper' certificate? I know absolutely nothing about it - so n00b speak only please

SHARE:
+ Post New Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. ssl certificates
    By PEO in forum General Chat
    Replies: 4
    Last Post: 4th January 2008, 10:14 PM
  2. Replies: 17
    Last Post: 30th November 2007, 03:37 PM
  3. Apache Certificates conversion & config
    By KWIK in forum How do you do....it?
    Replies: 0
    Last Post: 2nd November 2007, 06:04 PM
  4. Purchasing SSL Certificates
    By Dos_Box in forum Networks
    Replies: 3
    Last Post: 3rd January 2007, 04:33 PM
  5. Creating MSI's
    By adamyoung in forum Networks
    Replies: 9
    Last Post: 29th November 2005, 01:59 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •