Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Security and Privacy
FedoraForum Search

Forgot Password? Join Us!

Security and Privacy Sadly, malware, spyware, hackers and privacy threats abound in today's world. Let's be paranoid and secure our penguins, and slam the doors on privacy exploits.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 27th April 2006, 04:58 PM
Bone's Avatar
Bone Offline
Registered User
 
Join Date: Nov 2005
Posts: 63
SSL Certificate Expired

Does anyone know how to renew a SSL Certificate, on FC3?
Reply With Quote
  #2  
Old 27th April 2006, 05:19 PM
ccrvic Offline
Registered User
 
Join Date: Apr 2006
Posts: 1,092
Quote:
Originally Posted by Bone
Does anyone know how to renew a SSL Certificate, on FC3?
What sort of SSL certificate?

Creating a new certificate is very easy - but most people will not trust it, so if you're using it for external operations, you can't do it yourself.

You can generate a Certificate Signing Request & get that signed by someone "trusted" - but that might not actually save you anything over filling in a web form...

Vic.
Reply With Quote
  #3  
Old 27th April 2006, 06:40 PM
Dr Thrall Offline
Registered User
 
Join Date: Apr 2006
Location: Lahore/Paksitan
Age: 30
Posts: 1
Quote:
Originally Posted by Bone
Does anyone know how to renew a SSL Certificate, on FC3?
Better create a new cert but make sure that its serial is not the same as of previous cert.
Reply With Quote
  #4  
Old 27th April 2006, 08:34 PM
Bone's Avatar
Bone Offline
Registered User
 
Join Date: Nov 2005
Posts: 63
Good info, but how do I create a new certificate?
Reply With Quote
  #5  
Old 27th April 2006, 08:43 PM
Bone's Avatar
Bone Offline
Registered User
 
Join Date: Nov 2005
Posts: 63
maybe I should provide a little more detail. I have an internal behind the firewall server, and I want to create connect to it via https. When I do the certificate is expired. maybe someone can tell me how to update the certificate and what directive to use to point to it in Apache. However if you can just tell me how to create a new certificate, I can figure out the rest.
Reply With Quote
  #6  
Old 28th April 2006, 12:01 AM
brunson Offline
Registered User
 
Join Date: Jun 2005
Location: Westminster, Colorado
Posts: 2,304
Try this link:
http://www.google.com/search?q=how+t...lf+signed+cert
__________________
Registered Linux User #4837
411th in line to get sued by Micro$oft
Quote:
Basically, to learn Unix you learn to understand and apply a small set of key ideas and achieve expertise by expanding both the set of ideas and your ability to apply them - Paul Murphy
Reply With Quote
  #7  
Old 28th April 2006, 12:08 AM
ccrvic Offline
Registered User
 
Join Date: Apr 2006
Posts: 1,092
Quote:
Originally Posted by Bone
However if you can just tell me how to create a new certificate, I can figure out the rest.
There's a "certificate manager" webmin module. It makes life loads easier...

VIc.
Reply With Quote
  #8  
Old 28th April 2006, 02:44 PM
givehimagun Offline
Registered User
 
Join Date: Apr 2006
Posts: 9
RedHat Manual on SSL with instructions on how to renew/create a new one: http://www.redhat.com/docs/manuals/l...re-server.html
Reply With Quote
  #9  
Old 7th June 2006, 05:02 PM
Bone's Avatar
Bone Offline
Registered User
 
Join Date: Nov 2005
Posts: 63
Here is the solution to my question...

Step 1: Generate a Private Key

The openssl toolkit is used to generate an RSA Private Key and CSR (Certificate Signing Request). It can also be used to generate self-signed certificates which can be used for testing purposes or internal usage.

The first step is to create your RSA Private Key. This key is a 1024 bit RSA key which is encrypted using Triple-DES and stored in a PEM format so that it is readable as ASCII text.

openssl genrsa -des3 -out server.key 1024

Generating RSA private key, 1024 bit long modulus
.................................................. .......++++++
........++++++
e is 65537 (0x10001)
Enter PEM pass phrase:
Verifying password - Enter PEM pass phrase:

Step 2: Generate a CSR (Certificate Signing Request)

Once the private key is generated a Certificate Signing Request can be generated. The CSR is then used in one of two ways. Ideally, the CSR will be sent to a Certificate Authority, such as Thawte or Verisign who will verify the identity of the requestor and issue a signed certificate. The second option is to self-sign the CSR, which will be demonstrated in the next section.

During the generation of the CSR, you will be prompted for several pieces of information. These are the X.509 attributes of the certificate. One of the prompts will be for "Common Name (e.g., YOUR name)". It is important that this field be filled in with the fully qualified domain name of the server to be protected by SSL. If the website to be protected will be https://public.akadia.com, then enter public.akadia.com at this prompt. The command to generate the CSR is as follows:

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

Country Name (2 letter code) [GB]H
State or Province Name (full name) [Berkshire]:Bern
Locality Name (eg, city) [Newbury]:Oberdiessbach
Organization Name (eg, company) [My Company Ltd]:Akadia AG
Organizational Unit Name (eg, section) []:Information Technology
Common Name (eg, your name or your server's hostname) []ublic.akadia.com
Email Address []:martin.zahn@akadia.com
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

Step 3: Remove Passphrase from Key

One unfortunate side-effect of the pass-phrased private key is that Apache will ask for the pass-phrase each time the web server is started. Obviously this is not necessarily convenient as someone will not always be around to type in the pass-phrase, such as after a reboot or crash. mod_ssl includes the ability to use an external program in place of the built-in pass-phrase dialog, however, this is not necessarily the most secure option either. It is possible to remove the Triple-DES encryption from the key, thereby no longer needing to type in a pass-phrase. If the private key is no longer encrypted, it is critical that this file only be readable by the root user! If your system is ever compromised and a third party obtains your unencrypted private key, the corresponding certificate will need to be revoked. With that being said, use the following command to remove the pass-phrase from the key:

cp server.key server.key.org
openssl rsa -in server.key.org -out server.key

The newly created server.key file has no more passphrase in it.

-rw-r--r-- 1 root root 745 Jun 29 12:19 server.csr
-rw-r--r-- 1 root root 891 Jun 29 13:22 server.key
-rw-r--r-- 1 root root 963 Jun 29 13:22 server.key.org

Step 4: Generating a Self-Signed Certificate

At this point you will need to generate a self-signed certificate because you either don't plan on having your certificate signed by a CA, or you wish to test your new SSL implementation while the CA is signing your certificate. This temporary certificate will generate an error in the client browser to the effect that the signing certificate authority is unknown and not trusted.

To generate a temporary certificate which is good for 365 days, issue the following command:

openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
Signature ok
subject=/C=CH/ST=Bern/L=Oberdiessbach/O=Akadia AG/OU=Information
Technology/CN=public.akadia.com/Email=martin.zahn@akadia.com
Getting Private key

Step 5: Installing the Private Key and Certificate

When Apache with mod_ssl is installed, it creates several directories in the Apache config directory. The location of this directory will differ depending on how Apache was compiled.

cp server.crt /usr/local/apache/conf/ssl.crt
cp server.key /usr/local/apache/conf/ssl.key

That's it in a nutshell, also you will need to restart the webserver (apachectl restart). Then all should be fine. I hope this helps, it sure helped me.

Bone
Reply With Quote
  #10  
Old 31st July 2006, 09:59 AM
liro's Avatar
liro Offline
Registered User
 
Join Date: Oct 2005
Location: Switzerland
Age: 30
Posts: 233
hey Bone thanks a lot!!! exactly what i was looking for...

cheers liro

an by the way: as we would say "merci viu mau!"
__________________
some tips and small doc's of fedora core linux setup [german] http://www.liro.ch
Reply With Quote
  #11  
Old 31st July 2006, 04:18 PM
Bone's Avatar
Bone Offline
Registered User
 
Join Date: Nov 2005
Posts: 63
no problem, I'm just glad it helped someone besides myself.
Reply With Quote
Reply

Tags
certificate, expired, ssl

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Server certificate verification error: unable to get local issuer certificate James Board Using Fedora 0 4th September 2008 12:42 AM
Finding an Expired Certificate to Update It gabelh Using Fedora 2 23rd January 2008 11:03 PM


Current GMT-time: 15:38 (Saturday, 18-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat