What is LDAP used for?

前端 未结 16 851
眼角桃花
眼角桃花 2020-12-12 09:29

I know that LDAP is used to provide some information and to help facilitate authorization.

But what are the other usages of LDAP?

16条回答
  •  [愿得一人]
    2020-12-12 10:04

    • LDAP main usage is to provider faster retrieval of data . It acts as a central repository for storing user details that can be accessed by various application at same time .

    • The data that is read various time but we rarely update the data then LDAP is better option as it is faster to read in it because of its structure but updating(add/updatee or delete) is bit tedious job in case of LDAP

    • Security provided by LDAP : LDAP can work with SSL & TLS and thus can be used for sensitive information .

    • LDAP also can work with number of database providing greater flexibility to choose database best suited for our environment

    • Can be a better option for synchronising information between master and its replicase
    • LDAP apart from supporting the data recovery capability .Also , allows us to export data into LDIF file that can be read by various software available in the market

提交回复
热议问题