Book Image

JIRA 6.x Administration Cookbook

By : Patrick Li
Book Image

JIRA 6.x Administration Cookbook

By: Patrick Li

Overview of this book

Table of Contents (16 chapters)
JIRA 6.x Administration Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Integrating and importing users from LDAP


By default, JIRA manages its users and groups internally. Most organizations today often use LDAP such as Microsoft Active Directory (AD) for centralized user management, and you can integrate JIRA with LDAP. JIRA supports many different types of LDAP, including AD, OpenLDAP, and more.

There are two options to integrate JIRA with LDAP. In this recipe, we will explore the first option by using an LDAP Connector, and we will look at the second option in the next recipe, Integrating with LDAP for authentication only.

Getting ready

For this recipe, you will need to have an LDAP server up and running. You need to make sure that the JIRA server is able to access to the LDAP server and there are no glitches; for example, it is not blocked by firewalls.

At a minimum, you will also need to have the following information:

  • The host name and port number of the LDAP server.

  • The Base DN to search for users and groups.

  • The credentials to access the LDAP server. If you...