{"id":457,"date":"2018-03-07T02:48:40","date_gmt":"2018-03-07T08:48:40","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=457"},"modified":"2020-08-02T11:53:42","modified_gmt":"2020-08-02T16:53:42","slug":"how-to-install-ldap-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/","title":{"rendered":"How to Install LDAP on CentOS 7"},"content":{"rendered":"<div id=\"linux-946409570\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard application protocol for accessing and maintaining distributed directory information services over an Internet Protocol (IP) network. It can be used to store any kind of information and it is often used as one component of a centralized authentication system. Installing and configuring an OpenLDAP server on CentOS 7, it&#8217;s fairly easy task, just carefully follow the tutorial below and you should have it installed in less than 10 minutes.<\/p>\n<p><!--more--><\/p>\n<h2>Update the system<\/h2>\n<p>As usual before installing new software, update all your system packages to the newest available version first:<\/p>\n<pre># yum update<\/pre>\n<h2>Install OpenLDAP<\/h2>\n<p>We are going to begin by installing the packages required for OpenLDAP functionality:<\/p>\n<pre># yum -y install openldap compat-openldap openldap-clients openldap-servers openldap-servers-sql openldap-devel<\/pre>\n<p>We will also start the LDAP daemon and enable it on boot:<\/p>\n<pre># systemctl start slapd.service\r\n# systemctl enable slapd.service<\/pre>\n<p>Run the slappasswd command to set a LDAP root password and save the output because we are going to need it to configure OpenLDAP:<\/p>\n<pre># slappasswd<\/pre>\n<p>We&#8217;ll configure the OpenLDAP server now. We&#8217;ll create a few LDIF files and then we will use the ldapmodify command to deploy the configuration to the server. The files will be stored in &#8216;\/etc\/openldap\/slapd.d&#8217; and they shouldn&#8217;t be edited manually.<\/p>\n<p>The &#8216;db.ldif&#8217; file will update the olcSuffix variable which will add the distinguished name to queries that will be passed to the backend database, it will configure the domain name for which your LDAP server will provide account information, and it will update the olcRootDN variable which specifies the root distinguished name user that will have administrator access to the LDAP server.<\/p>\n<p>Our domain is field.linuxhostsupport.com, and written inside the &#8216;db.ldif&#8217; file it looks like this &#8216;dc=field,dc=linuxhostsupport,dc=com&#8217; and our root distinguished name is &#8216;cn=ldapadm,dc=field,dc=linuxhostsupport,dc=com&#8217;.<\/p>\n<h2>Configure OpenLDAP<\/h2>\n<p>Create the db.ldif file using nano or an editor of your preference and paste the following content in:<\/p>\n<pre># nano db.ldif\r\n\r\ndn: olcDatabase={2}hdb,cn=config\r\nchangetype: modify\r\nreplace: olcSuffix\r\nolcSuffix: dc=field,dc=linuxhostsupport,dc=com\r\n \r\ndn: olcDatabase={2}hdb,cn=config\r\nchangetype: modify\r\nreplace: olcRootDN\r\nolcRootDN: cn=ldapadm,dc=field,dc=linuxhostsupport,dc=com\r\n \r\ndn: olcDatabase={2}hdb,cn=config\r\nchangetype: modify\r\nreplace: olcRootPW\r\nolcRootPW: hashed_output_from_the_slappasswd_command\r\n<\/pre>\n<p>Deploy the configuration using ldapmodify:<\/p>\n<pre># ldapmodify -Y EXTERNAL -H ldapi:\/\/\/ -f db.ldif\r\n<\/pre>\n<p>Now restrict monitor access only to the ldapadm user:<\/p>\n<pre># nano monitor.ldif\r\n\r\ndn: olcDatabase={1}monitor,cn=config\r\nchangetype: modify\r\nreplace: olcAccess\r\nolcAccess: {0}to * by dn.base=\"gidNumber=0+uidNumber=0,cn=peercred,cn=external, cn=auth\" read by dn.base=\"cn=ldapadm,dc=field,dc=linuxhostsupport,dc=com\" read by * none\r\n<\/pre>\n<p>Deploy the configuration change again:<\/p>\n<pre># ldapmodify -Y EXTERNAL -H ldapi:\/\/\/ -f monitor.ldif\r\n<\/pre>\n<p>Now we will generate a certificate and a private key so we can communicate securely with the OpenLDAP server. We will use the command below to do that:<\/p>\n<pre>openssl req -new -x509 -nodes -out \\\r\n\/etc\/openldap\/certs\/myldap.field.linuxhostsupport.com.cert \\\r\n-keyout \/etc\/openldap\/certs\/myldap.field.linuxhostsupport.com.key \\\r\n-days 365\r\n<\/pre>\n<p>Change the owner and group permissions so OpenLDAP can read the files:<\/p>\n<pre># chown -R ldap:ldap \/etc\/openldap\/certs<\/pre>\n<p>Now create certs.ldif to configure OpenLDAP to use the LDAPS protocol:<\/p>\n<pre># nano certs.ldif\r\n\r\ndn: cn=config\r\nchangetype: modify\r\nreplace: olcTLSCertificateFile\r\nolcTLSCertificateFile: \/etc\/openldap\/certs\/myldap.field.linuxhostsupport.com.cert\r\n\r\ndn: cn=config\r\nchangetype: modify\r\nreplace: olcTLSCertificateKeyFile\r\nolcTLSCertificateKeyFile: \/etc\/openldap\/certs\/myldap.field.linuxhostsupport.com.key\r\n<\/pre>\n<p>We can then deploy the configuration again:<\/p>\n<pre># ldapmodify -Y EXTERNAL -H ldapi:\/\/\/ -f certs.ldif<\/pre>\n<p>Now test the configuration using the following command:<\/p>\n<pre># slaptest -u<\/pre>\n<h2>Setting up the OpenLDAP database<\/h2>\n<p>Now we can set up the LDAP database, start by copying the sample database configuration file to &#8216;\/var\/lib\/ldap&#8217; and change the file permissions:<\/p>\n<pre># cp \/usr\/share\/openldap-servers\/DB_CONFIG.example \/var\/lib\/ldap\/DB_CONFIG\r\n# chown -R ldap:ldap \/var\/lib\/ldap<\/pre>\n<p>Add the LDAP schemas:<\/p>\n<pre># ldapadd -Y EXTERNAL -H ldapi:\/\/\/ -f \/etc\/openldap\/schema\/cosine.ldif\r\n# ldapadd -Y EXTERNAL -H ldapi:\/\/\/ -f \/etc\/openldap\/schema\/nis.ldif\r\n# ldapadd -Y EXTERNAL -H ldapi:\/\/\/ -f \/etc\/openldap\/schema\/inetorgperson.ldif<\/pre>\n<p>And now create a base.ldif file for your domain:<\/p>\n<pre># nano base.ldif\r\n\r\ndn: dc=field,dc=linuxhostsupport,dc=com\r\ndc: field\r\nobjectClass: top\r\nobjectClass: domain\r\n\r\ndn: cn=ldapadm,dc=field,dc=linuxhostsupport,dc=com\r\nobjectClass: organizationalRole\r\ncn: ldapadm\r\ndescription: LDAP Manager\r\n\r\ndn: ou=People,dc=field,dc=linuxhostsupport,dc=com\r\nobjectClass: organizationalUnit\r\nou: People\r\n\r\ndn: ou=Group,dc=field,dc=linuxhostsupport,dc=com\r\nobjectClass: organizationalUnit\r\nou: Group\r\n<\/pre>\n<p>We will deploy these configuration changes to the OpenLDAP server using the ldapadm user:<\/p>\n<pre># ldapadd -x -W -D \"cn=ldapadm,dc=field,dc=linuxhostsupport,dc=com\" -f base.ldif\r\n<\/pre>\n<p>Enter the root password when prompted.<\/p>\n<p>If you need to add users it&#8217;s easier to add them with a GUI, we recommend using Apache Directory Studio or JXplorer for this.<\/p>\n<p>That&#8217;s it you should now have successfully installed LDAP on CentOS 7.<\/p>\n<p>&nbsp;<\/p>\n<p>Of course you don\u2019t have to install LDAP on CentOS 7, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux server support services<\/a>, in which case you can simply ask our expert Linux admins to configure this for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong>. If you liked this post,\u00a0 on how to install LDAP on CentOS 7, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-2350618638\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard application protocol for accessing and maintaining distributed directory information services over an Internet Protocol (IP) network. It can be used to store any kind of information and it is often used [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":458,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[61,85],"class_list":["post-457","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos-7","tag-ldap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install LDAP on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install LDAP on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-07T08:48:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:53:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install LDAP on CentOS 7\",\"datePublished\":\"2018-03-07T08:48:40+00:00\",\"dateModified\":\"2020-08-02T16:53:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\"},\"wordCount\":607,\"commentCount\":54,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg\",\"keywords\":[\"centos 7\",\"LDAP\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\",\"name\":\"How to Install LDAP on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg\",\"datePublished\":\"2018-03-07T08:48:40+00:00\",\"dateModified\":\"2020-08-02T16:53:42+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install LDAP on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install LDAP on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install LDAP on CentOS 7 | LinuxHostSupport","description":"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install LDAP on CentOS 7 | LinuxHostSupport","og_description":"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-03-07T08:48:40+00:00","article_modified_time":"2020-08-02T16:53:42+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install LDAP on CentOS 7","datePublished":"2018-03-07T08:48:40+00:00","dateModified":"2020-08-02T16:53:42+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/"},"wordCount":607,"commentCount":54,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg","keywords":["centos 7","LDAP"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/","name":"How to Install LDAP on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg","datePublished":"2018-03-07T08:48:40+00:00","dateModified":"2020-08-02T16:53:42+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Today, we will show you, How to install LDAP on CentOS 7. LDAP, or Lightweight Directory Access Protocol, is an open, vendor-neutral, industry standard","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/03\/How-to-Install-LDAP-on-CentOS-7.jpg","width":750,"height":410,"caption":"How to Install LDAP on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-ldap-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install LDAP on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/457","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=457"}],"version-history":[{"count":24,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/457\/revisions"}],"predecessor-version":[{"id":1237,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/457\/revisions\/1237"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/458"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}