Sponsored Content
Operating Systems Linux Red Hat Would like to study and take rh system admin exam. Post 302905501 by arcolinux on Thursday 12th of June 2014 12:43:29 AM
Old 06-12-2014
the CompTIA Linux+ Powered by LPI LX0-101 and LX0-102 are considered
entry level? can you get a red hat sys admin with experience and cert?
research is saying the red hat sys admin cert is 400 dollars!? can that be
right one exam 400!? I am a self studying self paying kind of guy what if I fail that 400 is steep. I am guessing you are in the industry does most folks go for the linux cert or the red hat cert. The linux cert says its for a linux sys admin, the language is the same.
 

6 More Discussions You Might Find Interesting

1. HP-UX

Hp-UX system administration exam ( HP0-002).

Hi, I would like to know some details about Hp-UX system administration exam ( HP0-002). I want to know 1. What is the passing percentage 2. How touch is the exam. I am reading Rehman's book thru and thru. I need to know if any other studies are required. I have some 4 years of Unix hands... (3 Replies)
Discussion started by: vikas_sri
3 Replies

2. Solaris

Solaris 9 Exam 310-014 & 310-015 Can anyone recommend some good study guides?

Hello, I'm going to be studying for my Solaris 9 System Administrator Certification and wondered if anyone had taken the exams and could recommend some good study guides / crams / books. Cheers, (8 Replies)
Discussion started by: unrealuk
8 Replies

3. What is on Your Mind?

UNIX Admin (Papers and study material)

Hi, I want to prepare and then appear for Unix admin certification. Please guide me for the study material and Exams that are required to be taken for UNIX certifcation. Thanks in advance. (11 Replies)
Discussion started by: raman1605
11 Replies

4. UNIX for Dummies Questions & Answers

Unix/Linux System Administrator - Study Advice

Hello all, I really hope that this is the right Forum to post this kind of a question... I have been working in the IT support industry for nearly 3 years now. I started of providing end-user support. So enough to say that I provided my fair share of "have you tried turning it off and on"... (1 Reply)
Discussion started by: kalignas
1 Replies

5. Homework & Coursework Questions

Exam Study - 2007.

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Im unsure how the MakeFile works any help would be great. This is a past exam that was held at the uni 2007. So... (0 Replies)
Discussion started by: syco__
0 Replies

6. Solaris

Solaris 11 admin exam

hi hi, has anyone here pass the basic admin exam for solaris 11 ? i am taking it soon.. very worried. (0 Replies)
Discussion started by: Exposure
0 Replies
NE_SSL_TRUST_CERT(3)						neon API reference					      NE_SSL_TRUST_CERT(3)

NAME
ne_ssl_trust_cert, ne_ssl_trust_default_ca - functions to indicate that certificates are trusted SYNOPSIS
#include <ne_session.h> void ne_ssl_trust_cert(ne_session *session, const ne_ssl_certificate *cert); void ne_ssl_trust_default_ca(ne_session *session); DESCRIPTION
To indicate that a given certificate is trusted by the user, the certificate object can be passed to ne_ssl_trust_cert. The certificate object is duplicated internally and can subsequently be destroyed. The SSL library in use by neon may include a default set of CA certificates; calling the ne_ssl_trust_default_ca function will indicate that these CAs are trusted by the user. EXAMPLES
Load the CA certificate stored in /path/to/cacert.pem: ne_session *sess = ne_session_create(...); ne_ssl_certificate *cert = ne_ssl_cert_read("/path/to/cacert.pem"); if (cert) { ne_ssl_trust_cert(sess, cert); ne_ssl_cert_free(cert); } else { printf("Could not load CA cert: %s ", ne_get_error(sess)); } SEE ALSO
ne_ssl_cert_read, ne_ssl_cert_import, ne_ssl_cert_free AUTHOR
Joe Orton <neon@lists.manyfish.co.uk> Author. COPYRIGHT
neon 0.28.4 25 February 2009 NE_SSL_TRUST_CERT(3)
All times are GMT -4. The time now is 05:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy