CA SiteMinder. Directory Configuration - OpenLDAP. r6.0 SP6
|
|
|
- Francis Jefferson
- 10 years ago
- Views:
Transcription
1 CA SiteMinder Directory Configuration - OpenLDAP r6.0 SP6
2 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational purposes only and is subject to change or withdrawal by CA at any time. This Documentation may not be copied, transferred, reproduced, disclosed, modified or duplicated, in whole or in part, without the prior written consent of CA. This Documentation is confidential and proprietary information of CA and may not be disclosed by you or used for any purpose other than as may be permitted in (i) a separate agreement between you and CA governing your use of the CA software to which the Documentation relates; or (ii) a separate confidentiality agreement between you and CA. Notwithstanding the foregoing, if you are a licensed user of the software product(s) addressed in the Documentation, you may print or otherwise make available a reasonable number of copies of the Documentation for internal use by you and your employees in connection with that software, provided that all CA copyright notices and legends are affixed to each reproduced copy. The right to print or otherwise make available copies of the Documentation is limited to the period during which the applicable license for such software remains in full force and effect. Should the license terminate for any reason, it is your responsibility to certify in writing to CA that all copies and partial copies of the Documentation have been returned to CA or destroyed. TO THE EXTENT PERMITTED BY APPLICABLE LAW, CA PROVIDES THIS DOCUMENTATION AS IS WITHOUT WARRANTY OF ANY KIND, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL CA BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY LOSS OR DAMAGE, DIRECT OR INDIRECT, FROM THE USE OF THIS DOCUMENTATION, INCLUDING WITHOUT LIMITATION, LOST PROFITS, LOST INVESTMENT, BUSINESS INTERRUPTION, GOODWILL, OR LOST DATA, EVEN IF CA IS EXPRESSLY ADVISED IN ADVANCE OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. The use of any software product referenced in the Documentation is governed by the applicable license agreement and such license agreement is not modified in any way by the terms of this notice. The manufacturer of this Documentation is CA. Provided with Restricted Rights. Use, duplication or disclosure by the United States Government is subject to the restrictions set forth in FAR Sections , , and (c)(1) - (2) and DFARS Section (b)(3), as applicable, or their successors. Copyright 2011 CA. All rights reserved. All trademarks, trade names, service marks, and logos referenced herein belong to their respective companies.
3 CA Product References This document references the following CA products: CA SiteMinder. Contact CA Contact CA Support For your convenience, CA provides one site where you can access the information you need for your Home Office, Small Business, and Enterprise CA products. At you can access the following: Online and telephone contact information for technical assistance and customer services Information about user communities and forums Product and documentation downloads CA Support policies and guidelines Other helpful resources appropriate for your product Provide Feedback If you have comments or questions about CA product documentation, you can send a message to [email protected]. If you would like to provide feedback about CA product documentation, complete our short customer survey, which is available on the CA Support website at
4
5 Contents Chapter 1: Configuring an OpenLDAP Directory Server 7 How to Configure the Slapd Configuration File... 7 Specify the SiteMinder Schema Files... 7 Enable User Authentication... 8 Specify Database Directives... 8 Test the Configuration File... 9 Restart the OpenLDAP Server... 9 How to Create the Database Create the Base Tree Structure Add Entries How to Configure the Directory Server as a Policy Store Create the Policy Store Connect to the Policy Store How to Configure the Directory Sever as a User Store Create a User Store Connect to the User Store Chapter 2: Troubleshooting 15 Cyrus SASL Installation Berkeley Database Version Mismatch Errors Building and Installing openssl Appendix A: Configuring SiteMinder Connections over SSL 17 How to Configure an LDAP User Directory Connection over SSL Before You Configure a Connection over SSL Install the NSS Utility Create the Certificate Database Files Add the Root Certificate Authority to the Certificate Database Add the Server Certificate to the Certificate Database List the Certificates in the Certificate Database Configure the User Directory Connection for SSL Point the Policy Server to the Certificate Database Verify the SSL Connection Contents 5
6 Index 27 6 Directory Configuration - OpenLDAP
7 Chapter 1: Configuring an OpenLDAP Directory Server This section contains the following topics: How to Configure the Slapd Configuration File (see page 7) How to Create the Database (see page 10) How to Configure the Directory Server as a Policy Store (see page 11) How to Configure the Directory Sever as a User Store (see page 12) How to Configure the Slapd Configuration File An OpenLDAP directory server requires additional configuration before you can use it as a policy store. The following process lists the configuration steps: 1. Specify the SiteMinder schema files. 2. Enable user authentication. 3. Specify database directives. 4. Test the configuration file. 5. Restart the OpenLDAP server. Specify the SiteMinder Schema Files Specifying the schema files in the include section of the slapd configuration file (slapd.conf) ensures that the slapd process (the LDAP Directory Server daemon) reads the additional configuration information. The included files must follow the correct slapd configuration file format. To specify the schema files 1. Copy the following schema files to the schema folder in the OpenLDAP installation directory: path path/openldap/openldap_attribute.schema path/openldap/openldap_object.schema path/xps/openldap/openldap_attribute_xps.schema path/xps/openldap/openldap_object_xps.schema Specifies the path to the schema files extracted from the tier 2 directory zip. Chapter 1: Configuring an OpenLDAP Directory Server 7
8 How to Configure the Slapd Configuration File 2. Type the following in the include section of the slapd configuration file: include /usr/local/etc/openldap/schema/openldap_attribute.schema include /usr/local/etc/openldap/schema/openldap_object.schema include /usr/local/etc/openldap/schema/openldap_attribute_xps.schema include /usr/local/etc/openldap/schema/openldap_object_xps.schema Note: This procedure assumes that the OpenLDAP server is located at /usr/local/etc/openldap and that the schema files are located in the schema subdirectory. The policy store schema is created for r6.0 SP6. Enable User Authentication Enabling user authentication ensures that you can protect resources with a supported authentication scheme. To enable user authentication, add the following to the slapd configuration file: access to attr=userpassword by self write by anonymous auth by * none Specify Database Directives The slapd configuration file requires values for additional database directives. To specify the directives, edit the following: database Specify any supported backend type. Example: bdb suffix Specify the database suffix. Example: dc=example,dc=com rootdn Specify the DN of root. Example: cn=manager,dc=example,dc=com 8 Directory Configuration - OpenLDAP
9 How to Configure the Slapd Configuration File rootpw Specify the password to root. directory Specify the path of the database directory. Example: /usr/local/var/openldap-data Note: The database directory must exist prior to running slapd and should only be accessible to the slapd process. Test the Configuration File Testing the configuration file ensures that it is correctly formatted. To test the configuration file 1. Change the directory to the OpenLDAP server directory. 2. Run the following command:./slapd Note: Unless you specified a debugging level, including level 0, slapd automatically forks, detaches itself from its controlling terminal, and runs in the background. 3. Run the following command:./slapd -Tt The slapd configuration file is tested. Restart the OpenLDAP Server Restarting the OpenLDAP directory server loads the SiteMinder schema. The Policy Server requires that the SiteMinder schema is loaded before you can use the directory server as a policy store. To restart the directory server 1. Stop the directory server using the following command: kill?int 'cat path_of_var/run_directory/slapd.pid' path_of_var/run_directory Specifies the path of the database directory. Example: kill?int 'cat /usr/local/var/run/slapd.pid' 2. Start the directory server using the following command:./slapd Chapter 1: Configuring an OpenLDAP Directory Server 9
10 How to Create the Database How to Create the Database The following process lists the steps for creating the directory server database for the policy store: 1. Create the base tree structure. 2. Add entries. Create the Base Tree Structure You create the base tree structure to hold the policy store data. To create the base tree structure, enter the following under the root DN: ou=policysvr4,ou=siteminder,ou=netegrity Add Entries Add entries to the directory server so that SiteMinder has the necessary organization and organizational role information. To add database entries 1. Create an LDIF file. Example: The following example contains an organization entry and an organizational role entry for the entries.ldif. # Organization for example.com dn: root_dn (example.com) objectclass: dcobject objectclass: organization dc: example o: Example Corporation # Organizational Role for Directory Manager dn: cn=manager,root_dn objectclass: organizationalrole objectclass: top cn: Manager description: Directory Manager 2. Use the following command to add the entries. ldapadd -<file_name.ldif> -D "cn=manager,dc=example,dc=com" -w<password> 10 Directory Configuration - OpenLDAP
11 How to Configure the Directory Server as a Policy Store How to Configure the Directory Server as a Policy Store You can use the Policy Server Management Console and the Policy Server User Interface to configure the directory server as a policy store. The following process lists the steps for using the directory server as a policy store: 1. Create the Policy Store 2. Connect to the Policy Store Create the Policy Store Using the directory server as a policy store requires that you point SiteMinder to the root DN under which the base tree structure was created. Important! Before running a SiteMinder utility or executable on Windows Server 2008, open the command line window with Administrator permissions. Open the command line window this way, even if your account has Administrator privileges. For more information, see the release notes for your SiteMinder component. To create the policy store 1. Start the Policy Server Management Console. 2. Click the Data tab. The Data tab opens. 3. Type the root_dn in the Root DN field, and click OK. SiteMinder saves the root DN. 4. Run the following from <siteminder_installation_path>/bin: smreg -su <password> Note: You can run smreg from any location if the path was previously set. SiteMinder sets the administrator password. 5. Run the following: smobjimport -ismpolicy.smdif -dsiteminder -w<password> -v SiteMinder imports the base policy store data into OpenLDAP. Connect to the Policy Store To connect an OpenLDAP directory server to the policy store, see Configuring Policy Servers to Use an LDAP Policy Store or Key Store in the Policy Server Installation Guide. Chapter 1: Configuring an OpenLDAP Directory Server 11
12 How to Configure the Directory Sever as a User Store How to Configure the Directory Sever as a User Store You can use the OpenLDAP directory server as a user store. The following process lists the steps for using the directory server as a user store: 1. Create a User Store 2. Connect to the User Store Create a User Store You can use an OpenLDAP directory server as a user store To create a user store 1. Use an LDIF file to create ou=people under the root DN. 2. Create users under the organizational unit. Connect to the User Store You must configure the Policy Server to use an OpenLDAP user directory. Note: The following procedure assumes you are logged into the Policy Server User Interface. To connect the user store 1. Click Edit, System Configuration, Create User Directory. The User Directories Properties dialog appears with the Directory Setup tab open. 2. Complete the following: Type the server IP address and port number in the Server field. Type the root DN in the Root field. Type the search criteria in the Start field. 3. Click the Credentials and Connection tab. The Credentials and Connection tab opens. 4. Complete the following: a. Select Require Credentials b. Type the full dn of the administrator in the Username field. Example: cn=manager, dc=example, dc=com c. Type the administrator password in the Password and Confirm Password fields. 12 Directory Configuration - OpenLDAP
13 How to Configure the Directory Sever as a User Store 5. Click the User Attributes tab. The User Attributes tab opens. 6. Type the names of the user profile attributes that SiteMinder is to use, and click OK. SiteMinder saves the user directory settings, and the user directory appears in the User Directory List. Chapter 1: Configuring an OpenLDAP Directory Server 13
14
15 Chapter 2: Troubleshooting This section contains the following topics: Cyrus SASL Installation (see page 15) Berkeley Database Version Mismatch Errors (see page 15) Building and Installing openssl (see page 15) Cyrus SASL Installation Symptom: When I install Cyrus SASL, I am experiencing compiling problems. Solution: More information on troubleshooting Cyrus SASL installation problems can be found at: Berkeley Database Version Mismatch Errors Symptom: I am receiving Berkeley database version mismatch errors. Solution: More information on troubleshooting Berkeley database version mismatch errors can be found at: Building and Installing openssl Symptom: I am having problems building and installing openssl. Solution: More information on building and installing openssl can be found at: Chapter 2: Troubleshooting 15
16
17 Appendix A: Configuring SiteMinder Connections over SSL This section contains the following topics: How to Configure an LDAP User Directory Connection over SSL (see page 17) How to Configure an LDAP User Directory Connection over SSL Configuring an LDAP user directory connection over SSL requires that you configure SiteMinder to use your certificate database files. Complete the following steps to configure the connection over SSL: 1. Before you configure a connection over SSL. 2. Install the NSS utility. 3. Create the certificate database files. 4. Add the root Certificate Authority (CA) to the certificate database. 5. Add the server certificate to the certificate database. 6. List the certifications in the certificate database. 7. Configure the user directory connection for SSL. 8. Point the Policy Server to the certificate database. 9. Verify the SSL connection. Before You Configure a Connection over SSL Review the following before configuring an LDAP user directory connection over SSL: Ensure your directory server is SSL-enabled. Note: For more information on configuring your directory server to communicate over SSL, refer to the vendor-specific documentation. SiteMinder uses a Netscape LDAP SDK to communicate with LDAP directories. As a result, SiteMinder requires that the database files be in a Netscape version file format (cert7.db). Important! Do not use Microsoft Internet Explorer to install certificates into your cert7.db database file. Appendix A: Configuring SiteMinder Connections over SSL 17
18 How to Configure an LDAP User Directory Connection over SSL A third-party certificate utility, which is compatible with Netscape, is required to manage your SSL certificates. We recommend the Mozilla Network Security Services (NSS) utility, version Note: Version is required to support the cert7.db format. Do not use later versions. (Active Directory) Considering the following: If the SiteMinder user directory connection was configured with the AD namespace, the following process does not apply. The AD namespace uses the native Windows certificate repository when establishing an SSL connection. When configuring the AD namespace to communicate over SSL: Ensure that the SiteMinder user directory connection is configured for a secure connection. For more information, refer to Configure the User Directory Connection for SSL (see page 24). On the machine hosting the Active Directory instance, ensure that the root CA certificate and the server certificate are added to the services' certificate store. Note: For more information on configuring Active Directory to communicate over SSL, refer to the Microsoft documentation. If the SiteMinder user directory connection was configured with the LDAP namespace, complete the following process to configure the connection over SSL. Install the NSS Utility You install the NSS utility to manage your certificate database files. Note: Install the utility on a system to which the Netscape Portable Runtime (NSPR) or the Policy Server is installed. Installing the utility to a system with either component ensures that the necessary DLLs or shared objects are available. To install the NSS utility 1. Access the Mozilla NSS FTP site. 2. Download the respective zip or tar for your operating system. Note: A zip is not available for Windows Server Download the zip for Windows NT. 3. Extract the NSS utility to a temporary location on the system to which you are managing your certificate database files. 18 Directory Configuration - OpenLDAP
19 How to Configure an LDAP User Directory Connection over SSL Create the Certificate Database Files The Policy Server requires that the certificate database files be in the Netscape version file format (cert7.db). You may use the NSS utility to create the certificate database files. Note: The following procedure details the specific options and arguments to complete the task. For a complete list of the NSS utility options and arguments, refer to the Mozilla documentation on the NSS project page. To create the certificate database files 1. From a command prompt, navigate to the bin directory in the location to which you extracted the NSS utility. Example: C:\nss\bin Note: Windows has a native certutil utility. Ensure you are working from the bin directory of the NSS utility or you may inadvertently run the Windows certutil utility. 2. Enter the following command: certutil -N -d certificate_database_directory -N Creates the cert7.db, key3.db, and secmod.db certificate database files. -d certificate_database_directory Specifies the directory to which the NSS utility is to create the certificate database files. Note: If the file path contains spaces, bracket the path in quotes. The utility prompts for a password to encrypt the database key. 3. Enter and confirm the password. NSS creates the required certificate database files: cert7.db key3.db secmod.db Example: Create the Certificate Database Files certutil -N -d C:\certdatabase Appendix A: Configuring SiteMinder Connections over SSL 19
20 How to Configure an LDAP User Directory Connection over SSL Add the Root Certificate Authority to the Certificate Database You add the root Certificate Authority (CA) to make it available for communication over SSL. Note: The following procedure details the specific options and arguments to complete the task. For a complete list of the NSS utility options and arguments, refer to the Mozilla documentation on the NSS project page. Important! Before running a SiteMinder utility or executable on Windows Server 2008, open the command line window with Administrator permissions. Open the command line window this way, even if your account has Administrator privileges. For more information, see the release notes for your SiteMinder component. To add the root CA certificate to the certificate database 1. From a command prompt, navigate to the bin directory in the location to which you extracted the NSS utility. Example: C:\nss\bin Note: Windows has a native certutil utility. Ensure you are working from the bin directory of the NSS utility or you may inadvertently run the Windows certutil utility. 2. Run the following command to add the root CA to the database file: certutil -A -n alias -t trust_arguments -i root_ca_path -d certificate_database_directory -A -n alias Adds a certificate to the certificate database. Specifies an alias for the certificate. Note: If the alias contains spaces, bracket the alias with quotes. -t trust_arguments Specify the trust attributes to apply to the certificate when adding it to the certificate database. There are three available trust categories for each certificate, which are expressed in this order: "SSL, , object signing". Specify the appropriate trust arguments so that the root CA is trusted to issue SSL certificates. In each category position, you may use zero or more of the following attribute arguments. p P Valid peer. Trusted peer. This argument implies p. 20 Directory Configuration - OpenLDAP
21 How to Configure an LDAP User Directory Connection over SSL c Valid CA. T Trusted CA to issue client certificates. This argument implies c. C Trusted CA to issue server certificates (SSL only). This argument implies c. Important! This is a required argument for the SSL trust category. u Certificate can be used for authentication or signing. -i root_ca_path Specifies the path to the root CA file. Consider the following: The path must include the certificate name. Valid extensions for a certificate include.cert,.cer, and.pem. Note: If the file path contains spaces, bracket the path in quotes. -d certificate_database_directory Specifies the path to the directory that contains the certificate database. Note: If the file path contains spaces, bracket the path in quotes. NSS adds the root CA to the certificate database. Example: Adding a Root CA to the Certificate Database certutil -A -n "My Root CA" -t "C,," -i C:\certificates\cacert.cer -d C:\certdatabase Add the Server Certificate to the Certificate Database You add the server certificate to the certificate database to make it available for communication over SSL. Note: The following procedure details the specific options and arguments to complete the task. For a complete list of the NSS utility options and arguments, refer to the Mozilla documentation on the NSS project page. Important! Before running a SiteMinder utility or executable on Windows Server 2008, open the command line window with Administrator permissions. Open the command line window this way, even if your account has Administrator privileges. For more information, see the release notes for your SiteMinder component. Appendix A: Configuring SiteMinder Connections over SSL 21
22 How to Configure an LDAP User Directory Connection over SSL To add the server certificate to the certificate database 1. From a command prompt, navigate to the bin directory in the location to which you extracted the NSS utility. Example: C:\nss\bin Note: Windows has a native certutil utility. Ensure you are working from the bin directory of the NSS utility or you may inadvertently run the Windows certutil utility. 2. Run the following command to add the root certificate to the database file: certutil -A -n alias -t trust_arguments -i server_certificate_path -d certificate_database_directory -A -n alias Adds a certificate to the certificate database. Specifies an alias for the certificate. Note: If the alias contains spaces, bracket the alias with quotes. -t trust_arguments Specify the trust attributes to apply to the certificate when adding it to the certificate database. There are three available trust categories for each certificate, which are expressed in this order: "SSL, , object signing". Specify the appropriate trust arguments so that the certificate is trusted. In each category position, you may use zero or more of the following attribute arguments: p P Valid peer. Trusted peer. This argument implies p. Important! This is a required argument for the SSL trust category. -i server_certificate_path Specifies the path to the server certificate. Consider the following: The path must include the certificate name. Valid extensions for a certificate include.cert,.cer, and.pem. Note: If the file path contains spaces, bracket the path in quotes. 22 Directory Configuration - OpenLDAP
23 How to Configure an LDAP User Directory Connection over SSL -d certificate_database_directory Specifies the path to the directory that contains the certificate database. Note: If the file path contains spaces, bracket the path in quotes. NSS adds the server certificate to the certificate database. Example: Adding a Server Certificate to the Certificate Database certutil -A -n "My Server Certificate" -t "P,," -i C:\certificates\servercert.cer -d C:\certdatabase List the Certificates in the Certificate Database You list the certifications to verify that they were added to the certificate database. Note: The following procedure details the specific options and arguments to complete the task. For a complete list of the NSS utility options and arguments, refer to the Mozilla documentation on the NSS project page. Important! Before running a SiteMinder utility or executable on Windows Server 2008, open the command line window with Administrator permissions. Open the command line window this way, even if your account has Administrator privileges. For more information, see the release notes for your SiteMinder component. To list the certifications in the certificate database 1. From a command prompt, navigate to the bin directory in the location to which you extracted the NSS utility. Example: C:\nss\bin Note: Windows has a native certutil utility. Ensure you are working from the bin directory of the NSS utility or you may inadvertently run the Windows certutil utility. 2. Run the following command: certutil -L -d certificate_database_directory -L Lists all of the certificates in the certificate database. -d certificate_database_directory Specifies the path to the directory that contains the certificate database. Note: If the file path contains spaces, bracket the path in quotes. Appendix A: Configuring SiteMinder Connections over SSL 23
24 How to Configure an LDAP User Directory Connection over SSL NSS displays the root CA alias, the server certificate alias, and the trust attributes you specified when adding the certificates to the certificate database. Example: List the Certificates in the Certificate Database certutil -L -d C:\certdatabase Configure the User Directory Connection for SSL You configure the user store connection to ensure that an SSL connection is used when the Policy Server and user store communicate. Note: When you create or modify a Policy Server object in the Policy Server User Interface, use ASCII characters. Object creation or modification with non-ascii characters is not supported. To configure the user store connection for SSL 1. Log in to the Policy Server User Interface. 2. Click Infrastructure, Directory. 3. Click User Directory, Modify User Directory. The Modify User Directory pane appears with a list of existing user directory connections. 4. Select the user directory connection you want, and click Select. User directory settings appear. 5. Select the Secure Connection check-box, and click Submit. The user directory connection is configured to communicate over SSL. Point the Policy Server to the Certificate Database You point the Policy Server to the certificate database to configure the Policy Server to communicate with the user directory over SSL. Note: When you create or modify a Policy Server object in the Policy Server User Interface, use ASCII characters. Object creation or modification with non-ascii characters is not supported. 24 Directory Configuration - OpenLDAP
25 How to Configure an LDAP User Directory Connection over SSL To point the Policy Server to the certificate database 1. Start the Policy Server Management Console. Important! If you are accessing this graphical user interface on Windows Server 2008, open the shortcut with Administrator permissions, even if you are logged into the system as an Administrator. For more information, see the release notes for your SiteMinder component. 2. Click the Data tab. 3. Enter the path to the Netscape certificate database file in the Netscape Certificate Database File field. Example: C:\certdatabase\cert7.db Note: The key3.db file must also be in the same directory as the cert7.db file. 4. Restart the Policy Server. The Policy Server is configured to communicate with the user directory over SSL. Verify the SSL Connection You verify the SSL connection to ensure the user directory and the Policy Server are communicating over SSL. Note: When you create or modify a Policy Server object in the Policy Server User Interface, use ASCII characters. Object creation or modification with non-ascii characters is not supported. To verify the SSL connection 1. Log in to the Policy Server User Interface. 2. Click Infrastructure, Directory. 3. Click User Directory, View User Directory. The View User Directory pane appears with a list of existing user directory connections. 4. Select the connection you want, and click Select. User directory settings appear. 5. Click View contents. If SSL is properly configured, the Directory Content pane appears and lists the contents of the user directory. Appendix A: Configuring SiteMinder Connections over SSL 25
26
27 Index A Add Entries 10 Add the Root Certificate Authority to the Certificate Database 20 Add the Server Certificate to the Certificate Database 21 B Before You Configure a Connection over SSL 17 Berkeley Database Version Mismatch Errors 15 Building and Installing openssl 15 C CA Product References iii Configure the User Directory Connection for SSL 24 Configuring an OpenLDAP Directory Server 7 Configuring SiteMinder Connections over SSL 17 Connect to the Policy Store 11 Connect to the User Store 12 Contact CA iii Create a User Store 12 Create the Base Tree Structure 10 Create the Certificate Database Files 19 Create the Policy Store 11 Cyrus SASL Installation 15 E Enable User Authentication 8 H How to Configure an LDAP User Directory Connection over SSL 17 How to Configure the Directory Server as a Policy Store 11 How to Configure the Directory Sever as a User Store 12 How to Configure the Slapd Configuration File 7 How to Create the Database 10 I Install the NSS Utility 18 L List the Certificates in the Certificate Database 23 P Point the Policy Server to the Certificate Database 24 R Restart the OpenLDAP Server 9 S Specify Database Directives 8 Specify the SiteMinder Schema Files 7 T Test the Configuration File 9 Troubleshooting 15 V Verify the SSL Connection 25 Index 27
CA Spectrum and CA Embedded Entitlements Manager
CA Spectrum and CA Embedded Entitlements Manager Integration Guide CA Spectrum Release 9.4 - CA Embedded Entitlements Manager This Documentation, which includes embedded help systems and electronically
CA Cloud Service Delivery Platform
CA Cloud Service Delivery Platform Customer Onboarding Version 01.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
CA VPN Client. User Guide for Windows 1.0.2.2
CA VPN Client User Guide for Windows 1.0.2.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your
CA Cloud Service Delivery Platform
CA Cloud Service Delivery Platform Service Level Manager Version 01.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
CA NetQoS Performance Center
CA NetQoS Performance Center Install and Configure SSL for Windows Server 2008 Release 6.1 (and service packs) This Documentation, which includes embedded help systems and electronically distributed materials,
CA Unified Infrastructure Management Server
CA Unified Infrastructure Management Server CA UIM Server Configuration Guide 8.0 Document Revision History Version Date Changes 8.0 September 2014 Rebranded for UIM 8.0. 7.6 June 2014 No revisions for
CA Nimsoft Monitor. Probe Guide for Active Directory Response. ad_response v1.6 series
CA Nimsoft Monitor Probe Guide for Active Directory Response ad_response v1.6 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
Upgrade Guide. CA Application Delivery Analysis 10.1
Upgrade Guide CA Application Delivery Analysis 10.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
CA Nimsoft Monitor. Probe Guide for Performance Collector. perfmon v1.5 series
CA Nimsoft Monitor Probe Guide for Performance Collector perfmon v1.5 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject
CA Nimsoft Monitor. Probe Guide for Microsoft Exchange Server Response Monitoring. ews_response v1.1 series
CA Nimsoft Monitor Probe Guide for Microsoft Exchange Server Response Monitoring ews_response v1.1 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational
CA Technologies SiteMinder
CA Technologies SiteMinder Agent for Microsoft SharePoint r12.0 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to
CA Spectrum and CA Service Desk
CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
How To Install Caarcserve Backup Patch Manager 27.3.2.2 (Carcserver) On A Pc Or Mac Or Mac (Or Mac)
CA ARCserve Backup Patch Manager for Windows User Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA Nimsoft Service Desk
CA Nimsoft Service Desk Single Sign-On Configuration Guide 6.2.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA Change Manager Enterprise Workbench r12
CA Change Manager Enterprise Workbench r12 Database Support for Microsoft SQL Server 2008 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation")
Chapter 1: How to Register a UNIX Host in a One-Way Trust Domain Environment 3
Contents Chapter 1: How to Register a UNIX Host in a One-Way Trust Domain Environment 3 Introduction... 3 How to Register a UNIX Host in a One-Way Trust Domain Environment... 4 Creating a Windows Agentless
BrightStor ARCserve Backup for Linux
BrightStor ARCserve Backup for Linux Agent for MySQL Guide r11.5 D01213-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the end user's
CA APM Cloud Monitor. Scripting Guide. Release 8.2
CA APM Cloud Monitor Scripting Guide Release 8.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for
CA Cloud Service Delivery Platform
CA Cloud Service Delivery Platform Business Relationship Manager Version 01.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred
CA Nimsoft Unified Management Portal
CA Nimsoft Unified Management Portal HTTPS Implementation Guide 7.6 Document Revision History Document Version Date Changes 1.0 June 2014 Initial version for UMP 7.6. CA Nimsoft Monitor Copyright Notice
CA SiteMinder. Web Agent Installation Guide for IIS 12.51
CA SiteMinder Web Agent Installation Guide for IIS 12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation
CA Nimsoft Monitor. Probe Guide for Lotus Notes Server Monitoring. notes_server v1.5 series
CA Nimsoft Monitor Probe Guide for Lotus Notes Server Monitoring notes_server v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to
CA Clarity Project & Portfolio Manager
CA Clarity Project & Portfolio Manager Using CA Clarity PPM with Open Workbench and Microsoft Project v12.1.0 This documentation and any related computer software help programs (hereinafter referred to
Unicenter NSM Integration for BMC Remedy. User Guide
Unicenter NSM Integration for BMC Remedy User Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational
CA Nimsoft Monitor. Probe Guide for Cloud Monitoring Gateway. cuegtw v1.0 series
CA Nimsoft Monitor Probe Guide for Cloud Monitoring Gateway cuegtw v1.0 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal
CA Clarity PPM. Connector for Microsoft SharePoint Release Notes. v2.0.00
CA Clarity PPM Connector for Microsoft SharePoint Release Notes v2.0.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
etrust Audit Using the Recorder for Check Point FireWall-1 1.5
etrust Audit Using the Recorder for Check Point FireWall-1 1.5 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational
CA SiteMinder. Web Agent Installation Guide for IIS. r12.5
CA SiteMinder Web Agent Installation Guide for IIS r12.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA SiteMinder. Upgrade Guide. r12.0 SP2
CA SiteMinder Upgrade Guide r12.0 SP2 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational purposes only and are
CA Nimsoft Monitor. Probe Guide for Java Virtual Machine Monitoring. jvm_monitor v1.4 series
CA Nimsoft Monitor Probe Guide for Java Virtual Machine Monitoring jvm_monitor v1.4 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to
Chapter 1: How to Configure Certificate-Based Authentication
Chapter 1: How to Configure Certificate-Based Authentication Introduction Product: CA ControlMinder Release: All OS: All This scenario describes how a system or a CA ControlMinder administrator configures
LDAP Server Configuration Example
ATEN Help File LDAP Server Configuration Example Introduction The KVM Over the NET switch allows log in authentication and authorization through external programs. This chapter provides an example of how
CA Spectrum. Microsoft MOM and SCOM Integration Guide. Release 9.4
CA Spectrum Microsoft MOM and SCOM Integration Guide Release 9.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA Nimsoft Monitor. Probe Guide for CA ServiceDesk Gateway. casdgtw v2.4 series
CA Nimsoft Monitor Probe Guide for CA ServiceDesk Gateway casdgtw v2.4 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or
CA Nimsoft Monitor. Probe Guide for E2E Application Response Monitoring. e2e_appmon v2.2 series
CA Nimsoft Monitor Probe Guide for E2E Application Response Monitoring e2e_appmon v2.2 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject
CA SiteMinder. SDK Overview. r6.0 SP6/6.x QMR 6. Second Edition
A SiteMinder SDK Overview r6.0 SP6/6.x QMR 6 Second Edition This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA ARCserve Backup for Windows
CA ARCserve Backup for Windows Agent for Microsoft SharePoint Server Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for
CA Desktop Migration Manager
CA Desktop Migration Manager DMM Deployment Setup Guide 12.9 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA SiteMinder. Agent for IIS Installation Guide. r12.0 SP3
CA SiteMinder Agent for IIS Installation Guide r12.0 SP3 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA Identity Manager. Glossary. r12.5 SP8
CA Identity Manager Glossary r12.5 SP8 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational
Title: How to set up SSL between CA SiteMinder Web Access Manager - SiteMinder Policy Server and Active Directory (AD)
Tech Document Title: How to set up SSL between CA SiteMinder Web Access Manager - SiteMinder Policy Server and Active Directory (AD) Description: The document describes how to setup an encrypted communication
CA Nimsoft Monitor. Probe Guide for iseries System Statistics Monitoring. sysstat v1.1 series
CA Nimsoft Monitor Probe Guide for iseries System Statistics Monitoring sysstat v1.1 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to
CA Nimsoft Monitor. Probe Guide for Internet Control Message Protocol Ping. icmp v1.1 series
CA Nimsoft Monitor Probe Guide for Internet Control Message Protocol Ping icmp v1.1 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes
CA SMF Director. Release Notes. Release 12.6.00
CA SMF Director Release Notes Release 12.6.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your
CA Nimsoft Monitor. Probe Guide for URL Endpoint Response Monitoring. url_response v4.1 series
CA Nimsoft Monitor Probe Guide for URL Endpoint Response Monitoring url_response v4.1 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject
CA Nimsoft Monitor. Probe Guide for DNS Response Monitoring. dns_response v1.6 series
CA Nimsoft Monitor Probe Guide for DNS Response Monitoring dns_response v1.6 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
LDAP Server Configuration Example
ATEN Help File LDAP Server Configuration Example Introduction KVM Over the NET switches allow log in authentication and authorization through external programs. This help file provides an example of how
CA Workload Automation Agent for Databases
CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
CA Unified Infrastructure Management
CA Unified Infrastructure Management hyperv Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal
CA Unified Infrastructure Management
CA Unified Infrastructure Management Probe Guide for IIS Server Monitoring iis v1.7 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject
CA Workload Automation Agent for Remote Execution
CA Workload Automation Agent for Remote Execution Release Notes r11.3.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the
Arcserve Cloud. Arcserve Cloud Getting Started Guide
Arcserve Cloud Arcserve Cloud Getting Started Guide This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
CA Mobile Device Management. How to Create Custom-Signed CA MDM Client App
CA Mobile Device Management How to Create Custom-Signed CA MDM Client App This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as
CA Nimsoft Service Desk. Compatibility Matrix
CA Nimsoft Service Desk Compatibility Matrix Last Updated On: December 6, 2013 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to
CA Unified Infrastructure Management
CA Unified Infrastructure Management Probe Guide for iseries Journal Message Monitoring journal v1.0 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you
Nimsoft Monitor. dns_response Guide. v1.6 series
Nimsoft Monitor dns_response Guide v1.6 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal
CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01
CA Clarity PPM Connector for Microsoft SharePoint Product Guide Service Pack 02.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred
CA SiteMinder. Directory Configuration Guide. r6.0 SP6. Second Edition
CA SiteMinder Directory Configuration Guide r6.0 SP6 Second Edition This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
Configuring idrac6 for Directory Services
Configuring idrac6 for Directory Services Instructions for Setting Up idrac6 with Active Directory, Novell, Fedora, OpenDS and OpenLDAP Directory Services. A Dell Technical White Paper Dell Product Group
CA Workload Automation Agent for Microsoft SQL Server
CA Workload Automation Agent for Microsoft SQL Server Release Notes r11.3.1, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter
CA Clarity Project & Portfolio Manager
CA Clarity Project & Portfolio Manager Connector for CA Unicenter Service Desk & CA Software Change Manager for Distributed Product Guide v2.0.00 This documentation, which includes embedded help systems
ehealth Psytechnics Integration for User Guide r6.0 SP3
ehealth Psytechnics Integration for User Guide r6.0 SP3 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational
CA Mobile Device Management 2014 Q1 Getting Started
CA Mobile Device Management 2014 Q1 Getting Started This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
CA Performance Center
CA Performance Center Release Notes Release 2.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for
BrightStor ARCserve Backup for Windows
BrightStor ARCserve Backup for Windows Serverless Backup Option Guide r11.5 D01182-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the
CA XOsoft Replication for Windows
CA XOsoft Replication for Windows Microsoft SQL Server Operation Guide r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the
CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam
CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam (CAT-140) Version 1.4 - PROPRIETARY AND CONFIDENTIAL INFORMATION - These educational materials (hereinafter referred to as
CA Spectrum Active Directory and Exchange Server Manager
CA Spectrum Active Directory and Exchange Server Manager Solution Guide Release 9.2.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred
BrightStor ARCserve Backup for Windows
BrightStor ARCserve Backup for Windows Tape RAID Option Guide r11.5 D01183-1E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the end user's
CA Nimsoft Monitor Snap
CA Nimsoft Monitor Snap Configuration Guide for IIS Server Monitoring iis v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
DevTest Solutions. Local License Server. Version 2.1.2
DevTest Solutions Local License Server Version 2.1.2 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is
Troubleshooting Active Directory Server
Proven Practice Troubleshooting Active Directory Server Product(s): IBM Cognos Series 7 Area of Interest: Security Troubleshooting Active Directory Server 2 Copyright Copyright 2008 Cognos ULC (formerly
CA ARCserve Backup for Windows
CA ARCserve Backup for Windows Agent for Sybase Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
Unicenter TCPaccess FTP Server
Unicenter TCPaccess FTP Server Release Summary 6.0 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational purposes
CA Process Automation
CA Process Automation Glossary Service Pack 04.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
Connector for CA Unicenter Asset Portfolio Management Product Guide - On Premise. Service Pack 02.0.02
Connector for CA Unicenter Asset Portfolio Management Product Guide - On Premise Service Pack 02.0.02 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter
CA Nimsoft Monitor. Probe Guide for Apache HTTP Server Monitoring. apache v1.5 series
CA Nimsoft Monitor Probe Guide for Apache HTTP Server Monitoring apache v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
CA SiteMinder. Web Agent Installation Guide for IIS. r12.0 SP3. Fourth Edition
CA SiteMinder Web Agent Installation Guide for IIS r12.0 SP3 Fourth Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as
CA ARCserve Replication and High Availability for Windows
CA ARCserve Replication and High Availability for Windows Microsoft SQL Server Operation Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation")
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP
Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.1 D14465.06 December 2013 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration
Unicenter Patch Management
Unicenter Patch Management Best Practices for Managing Security Updates R11 This documentation (the Documentation ) and related computer software program (the Software ) (hereinafter collectively referred
BrightStor ARCserve Backup for Windows
BrightStor ARCserve Backup for Windows Agent for Microsoft SQL Server r11.5 D01173-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the
CA ARCserve Backup for Windows
CA ARCserve Backup for Windows Agent for Sybase Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
HP Device Manager 4.7
Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...
CA Spectrum Active Directory and Exchange Server Manager
CA Spectrum Active Directory and Exchange Server Manager Solution Guide Release 9.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred
CA Cloud Storage for System z
CA Cloud Storage for System z Release Notes Release 1.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation
CA ARCserve Replication and High Availability
CA ARCserve Replication and High Availability Installation Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational
CA Spectrum and CA Performance Center
CA Spectrum and CA Performance Center Integration Guide CA Spectrum Release 9.3 - CA Performance Center r2.3.00 This Documentation, which includes embedded help systems and electronically distributed materials,
Arcserve Backup for Windows
Arcserve Backup for Windows Agent for Microsoft SharePoint Server Guide r16 Pre-release Document, only for reference This Documentation, which includes embedded help systems and electronically distributed
CA SiteMinder. Federation Security Services Release Notes. r12.0 SP3
CA SiteMinder Federation Security Services Release Notes r12.0 SP3 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational
CA Nimsoft Monitor. Probe Guide for Sharepoint. sharepoint v1.6 series
CA Nimsoft Monitor Probe Guide for Sharepoint sharepoint v1.6 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal
Symantec Managed PKI. Integration Guide for ActiveSync
Symantec Managed PKI Integration Guide for ActiveSync ii Symantec Managed PKI Integration Guide for ActiveSync The software described in this book is furnished under a license agreement and may be used
CA Process Automation
Communications Release 04.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational
CA Service Desk Manager r12.x Professional Exam (CAT-180) Study Guide Version 1.2
CA Service Desk Manager r12.x Professional Exam (CAT-180) Study Guide Version 1.2 - PROPRIETARY AND CONFIDENTIAL INFORMATION - These educational materials (hereinafter referred to as the Materials ) are
WANSync SQL Server. Operations Guide
WANSync SQL Server Operations Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only
CA Unified Infrastructure Management
CA Unified Infrastructure Management Probe Guide for iseries Journal Message Monitoring v1.0 series Copyright Notice This online help system (the "System") is for your informational purposes only and is
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
CA Nimsoft Monitor. Probe Guide for File and directory checking. dirscan v3.0 series
CA Nimsoft Monitor Probe Guide for File and directory checking dirscan v3.0 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change
Intuit Field Service Management ES
Intuit Field Service Management ES QuickBooks Merchant Services Integration User Guide This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the
