Sun Java System Access Manager Policy Agent 2.2 Guide for Apache HTTP Server 2.0.54

ProcedureTo Install the Access Manager Root CA Certificate on Apache HTTP Server on Linux Systems

You can use the certutil program to install the root CA certificate on Apache HTTP Server.

  1. Change directories to the location of the Apache HTTP Server configuration file.

    The following example is applicable for changing directories using the C shell when the Apache HTTP Server configuration file is in the default location of /etc/apache/:


    # /etc/apache/
  2. Change to the cert directory.

  3. Set the proper environment by issuing the following command:


    # setenv LD_LIBRARY_PATH
    PolicyAgent-base/agents/apache/lib:PolicyAgent-base/agents/lib:/usr/lib/mps
  4. (Conditional) If you have not already created the necessary certificate database, create that database now by issuing the following command:


    # PolicyAgent-base/agents/apache/cert/certutil -N -d .

  5. Install root CA certificate by issuing the following command:


    # PolicyAgent-base/agents/apache/cert/certutil -A -n cert-name -t
    "C,C,C" -d cert-dir -i cert-file
    
    cert-name

    The name for this root CA certificate

    cert-dir

    The directory where the certificate and key stores are located

    cert-file

    The base-64 encoded root CA certificate file.

    For more information on the cetrutil utility enter cetrutil -H for Help.

  6. To verify that the certificate is properly installed, in the command line, issue the following command:

    # PolicyAgent-base/agents/apache/cert/certutil -L -d .

    The root CA certificate is then listed in the output of the certutil -L command as illustrated in the following code example:


    Certificate Name                             Trust Attrubutes
    
    
                         cert-name                                      C,C,C
    
    p    Valid peer
    P    Trusted peer (implies c)
    c    Valid CA
    T    Trusted CA to issue client certs (implies c)
    C    Trusted CA to certs(only server certs for ssl) (implies c)
    u    User cert
    w    Send warning
    
    
                      
  7. Restart Apache HTTP Server.