- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSL CA Certificate
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2006 11:21 AM
тАО01-31-2006 11:21 AM
How do you create and install CA certificate in SSL. We don't want to use third party SSL tool like verisign and thwate etc.
We have our own site where various types of certificates can be created.
I have created key and certificate in the past but never created and installed CA Certificate.
Can someone shed some light on CA certificate ?
Thanks,
Shiv
Solved! Go to Solution.
- Tags:
- certificate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2006 11:29 AM
тАО01-31-2006 11:29 AM
Re: SSL CA Certificate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2006 03:18 PM
тАО01-31-2006 03:18 PM
SolutionCA - Certificate Authority. In cryptography, a certificate authority or certification authority (CA) is an entity which issues digital certificates for use by other parties. It is an example of a trusted third party. CA's are characteristic of many public key infrastructure (PKI) schemes.
A CA will issue a public key certificate which states that the CA attests that the public key contained in the certificate belongs to the person, organization, server, or other entity noted in the certificate.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2006 03:33 PM
тАО01-31-2006 03:33 PM
Re: SSL CA Certificate
If you want to setup your own CA to use in your Intranet, do it with OpenSSL. OpenSSL is fully supported by HP and available to download from,
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=OPENSSL11I
Release notes at,
http://www.docs.hp.com/en/5991-4792/index.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2006 03:47 PM
тАО01-31-2006 03:47 PM
Re: SSL CA Certificate
You can setup your own CA with this guide,
http://sial.org/howto/openssl/ca/
Make sure you use OpenSSL downloaded from the above link (previous post)
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 11:16 PM
тАО02-01-2006 11:16 PM
Re: SSL CA Certificate
to install a CA certificate under Windows.
Under UNIX its simply a matter of distributing the World readable certicate to whichever directory is the
default location scanned by SSL clients for lists of trusted CAs (/opt/openssl/certs under HP-UX).
I use Rdist for that purpose.
As you have already created certificates you
will be familiar with the tool used to create
a CA certificate.
You need to make arrangemnets within your
organisation for securely storing the CA key
- which you will use to sign server certificates.
Make sure you keep offline backup copies.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 11:36 PM
тАО02-01-2006 11:36 PM
Re: SSL CA Certificate
A scripted solution.
#!/bin/sh
echo "name is: $1"
touch certindex.txt
touch index.txt
openssl req -new -x509 -keyout private/cakey.pem -out cacert.pem -days 3650 -con
fig /etc/openssl.cnf
openssl req -new -nodes -out ${1}-req.pem -keyout private/${1}-key.pem -config /
etc/openssl.cnf
openssl ca -out ${1}-cert.pem -config /etc/openssl.cnf -infiles ${1}-req.pem
certf="${1}-cert.pem"
keyf="private/${1}-key.pem"
cp $keyf /etc/httpd/conf/ssl.key/
cp $certf /etc/httpd/conf/sss.crt/
Change the shell. Change the location of the configuration files.
This script is tested and works on HP-UX and Linux. When you are done, copy the files to the locations referred to in the configuration files.
I built this after reading documents at http://www.openssl.org
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 11:40 PM
тАО02-01-2006 11:40 PM
Re: SSL CA Certificate
I re-read the thread.
I absolutely recommend against downloading ssl from the sources listed above.
For HP-UX you should get openssl from the Internet Express download. For Linux you should get the binary distributions from the Linux distribution vendor.
This is a very important security product and in the above mentioned sources you can be assured that the products have been properly tested.
openssl is a great organization and they know how to create and distribute their product. It is perferable to use versions on HP-9000 servers that have been ported and tested by HP.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 11:47 PM
тАО02-01-2006 11:47 PM
Re: SSL CA Certificate
OpenSSL comes with a nifty utilities namely, CA.pl and CA.sh used as frienlier interface for OpenSSL certificate programs, more information can be found at,
http://www.openssl.org/docs/HOWTO/certificates.txt
# man CA.pl
-Arun