{"id":17132,"date":"2022-02-21T15:22:14","date_gmt":"2022-02-21T14:22:14","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/"},"modified":"2022-05-31T16:36:44","modified_gmt":"2022-05-31T14:36:44","slug":"configure-ldap-authentication-for-percona-pmm","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/","title":{"rendered":"Configure LDAP authentication for Percona PMM"},"content":{"rendered":"<p>One question that comes often out working with <a href=\"https:\/\/www.percona.com\/doc\/percona-monitoring-and-management\/2.x\/index.html\" target=\"_blank\" rel=\"noopener\">Percona Monitoring and Management tool<\/a>, is how to use LDAP to define users which can connect to the PMM web interface.<br \/>\nLet&#8217;s see how to implement this kind of configuration.<br \/>\n<!--more--><br \/>\nAs you can read in a <a href=\"https:\/\/www.dbi-services.com\/blog\/what-i-really-like-about-percona-pmm\/\" target=\"_blank\" rel=\"noopener\">previous post<\/a> where I gave an overview of PMM, the product is based on a client-server model.<br \/>\nYou have 4 different ways to install the PMM server:<br \/>\n&#8211; via Docker images<br \/>\n&#8211; via a Virtual appliance provided by Percona<br \/>\n&#8211; on the Amazon AWS Cloud<br \/>\n&#8211; using an easy install script which also installs Docker for you.<br \/>\nI&#8217;m used to install the PMM server with the first method, following next steps:<br \/>\n1) I pull the last version of PMM server image:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ sudo docker pull percona\/pmm-server:2<\/pre>\n<p>2) I create a container for persistent data (pmm-data): <\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ sudo docker create -v \/srv --name pmm-data percona\/pmm-server:2 \/bin\/true<\/pre>\n<p>3) I do the run of the pulled image to start the server (pmm-server):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ sudo docker run --detach --restart always -p 80:80 -p 443:443 --volumes-from pmm-data --name pmm-server percona\/pmm-server:2<\/pre>\n<p>I can now connect to the PMM web interface at &#8220;https:\/\/<em>PMM_server_IP<\/em>:443&#8243; with the user &#8220;admin&#8221; (the password is &#8220;admin&#8221; and should be changed at the first login), which is the user that I use to manage the platform. I have then the choice to create other users which can connect to the console, with 3 different levels of permissions:<br \/>\n&#8211; Admin<br \/>\n&#8211; Editor<br \/>\n&#8211; Viewer<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png\" alt=\"\" width=\"300\" height=\"147\" class=\"alignnone size-medium wp-image-54665\" \/><\/a><br \/>\nBut if you already have an LDAP, you can use it to let users of your organization directly access to PMM platform.<br \/>\nNormally this is done by modifying 2 configuration files of Grafana:<br \/>\n&#8211; \/etc\/grafana\/grafana.ini -&gt; to turn on the LDAP option<br \/>\n&#8211; \/etc\/grafana\/ldap.toml -&gt; to handle LDAP configuration<br \/>\nand then restarting the Grafana services.<br \/>\nIn my case, in order to make these changes persistent to PMM server upgrades and maintenance, I will:<br \/>\n1) Activate LDAP at the run of the container:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ sudo docker run --detach --restart always -e GF_AUTH_LDAP_CONFIG_FILE=\/srv\/grafana\/ldap.toml -e GF_AUTH_LDAP_ENABLED=true -e GF_AUTH_LDAP_ALLOW_SIGN_UP=true -p 80:80 -p 443:443 --volumes-from pmm-data --name pmm-server percona\/pmm-server:2<\/pre>\n<p>2) Place the ldap.toml configuration file in the persistent pmm-data container:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ sudo docker exec -it pmm-server \/bin\/bash\n[root@0ea845ff56ec opt]# cp \/etc\/grafana\/ldap.toml \/srv\/grafana\/ldap.toml\n<\/pre>\n<p>Now a new LDAP tab appears on the Server Admin page of the PMM interface:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/ServerAdmin-LDAP.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/ServerAdmin-LDAP.png\" alt=\"\" width=\"300\" height=\"158\" class=\"alignnone size-medium wp-image-54671\" \/><\/a><br \/>\nThe connection error is normal here, because I still have to adapt the following LDAP configuration (remember, on the persistent volume!):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">$ vi \/srv\/grafana\/ldap.toml\n# To troubleshoot and get more log info enable ldap debug logging in grafana.ini\n# [log]\n# filters = ldap:debug\n\n[[servers]]\n# Ldap server host (specify multiple hosts space separated)\nhost = \"127.0.0.1\"\n# Default port is 389 or 636 if use_ssl = true\nport = 389\n# Set to true if LDAP server should use an encrypted TLS connection (either with STARTTLS or LDAPS)\nuse_ssl = false\n# If set to true, use LDAP with STARTTLS instead of LDAPS\nstart_tls = false\n# set to true if you want to skip ssl cert validation\nssl_skip_verify = false\n# set to the path to your root CA certificate or leave unset to use system defaults\n# root_ca_cert = \"\/path\/to\/certificate.crt\"\n# Authentication against LDAP servers requiring client certificates\n# client_cert = \"\/path\/to\/client.crt\"\n# client_key = \"\/path\/to\/client.key\"\n\n# Search user bind dn\nbind_dn = \"cn=admin,dc=grafana,dc=org\"\n# Search user bind password\n# If the password contains # or ; you have to wrap it with triple quotes. Ex \"\"\"#password;\"\"\"\nbind_password = 'grafana'\n\n# User search filter, for example \"(cn=%s)\" or \"(sAMAccountName=%s)\" or \"(uid=%s)\"\nsearch_filter = \"(cn=%s)\"\n\n# An array of base dns to search through\nsearch_base_dns = [\"dc=grafana,dc=org\"]\n\n## For Posix or LDAP setups that does not support member_of attribute you can define the below settings\n## Please check grafana LDAP docs for examples\n# group_search_filter = \"(&amp;(objectClass=posixGroup)(memberUid=%s))\"\n# group_search_base_dns = [\"ou=groups,dc=grafana,dc=org\"]\n# group_search_filter_user_attribute = \"uid\"\n\n# Specify names of the ldap attributes your ldap uses\n[servers.attributes]\nname = \"givenName\"\nsurname = \"sn\"\nusername = \"cn\"\nmember_of = \"memberOf\"\nemail =  \"email\"\n\n# Map ldap groups to grafana org roles\n[[servers.group_mappings]]\ngroup_dn = \"cn=admins,ou=groups,dc=grafana,dc=org\"\norg_role = \"Admin\"\n# To make user an instance admin  (Grafana Admin) uncomment line below\n# grafana_admin = true\n# The Grafana organization database id, optional, if left out the default org (id 1) will be used\n# org_id = 1\n\n[[servers.group_mappings]]\ngroup_dn = \"cn=users,ou=groups,dc=grafana,dc=org\"\norg_role = \"Editor\"\n\n[[servers.group_mappings]]\n# If you want to match all (or no ldap groups) then you can use wildcard\ngroup_dn = \"*\"\norg_role = \"Viewer\"\n<\/pre>\n<p>And when I change the configuration to point to my LDAP server, I can test the user mapping:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP.png\" alt=\"\" width=\"300\" height=\"266\" class=\"alignnone size-medium wp-image-54681\" \/><\/a><br \/>\nand then directly login with my username which has only Viewer privileges:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP-user-login.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP-user-login.png\" alt=\"\" width=\"284\" height=\"300\" class=\"alignnone size-medium wp-image-54673\" \/><\/a><br \/>\nAnd indeed new user is synced via LDAP:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP-user.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/LDAP-user.png\" alt=\"\" width=\"300\" height=\"113\" class=\"alignnone size-medium wp-image-54675\" \/><\/a><\/p>\n<p>As usual, stay tuned, other posts about PMM will come soon \ud83d\ude09<\/p>\n<p>By <a href=\"https:\/\/www.linkedin.com\/in\/elisausai\/\" target=\"_blank\" rel=\"noopener\">Elisa Usai<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>One question that comes often out working with Percona Monitoring and Management tool, is how to use LDAP to define users which can connect to the PMM web interface. Let&#8217;s see how to implement this kind of configuration.<\/p>\n","protected":false},"author":42,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[],"type_dbi":[],"class_list":["post-17132","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Configure LDAP authentication for Percona PMM - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configure LDAP authentication for Percona PMM\" \/>\n<meta property=\"og:description\" content=\"One question that comes often out working with Percona Monitoring and Management tool, is how to use LDAP to define users which can connect to the PMM web interface. Let&#8217;s see how to implement this kind of configuration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-21T14:22:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-31T14:36:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png\" \/>\n<meta name=\"author\" content=\"Elisa Usai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elisa Usai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/\"},\"author\":{\"name\":\"Elisa Usai\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/ac5847ee8d7bad4196e72660c1377b1f\"},\"headline\":\"Configure LDAP authentication for Percona PMM\",\"datePublished\":\"2022-02-21T14:22:14+00:00\",\"dateModified\":\"2022-05-31T14:36:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/\"},\"wordCount\":406,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/02\\\/Users-config.png\",\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/\",\"name\":\"Configure LDAP authentication for Percona PMM - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/02\\\/Users-config.png\",\"datePublished\":\"2022-02-21T14:22:14+00:00\",\"dateModified\":\"2022-05-31T14:36:44+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/ac5847ee8d7bad4196e72660c1377b1f\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/02\\\/Users-config.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/02\\\/Users-config.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/configure-ldap-authentication-for-percona-pmm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure LDAP authentication for Percona PMM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/ac5847ee8d7bad4196e72660c1377b1f\",\"name\":\"Elisa Usai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"caption\":\"Elisa Usai\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/elisa-usai\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Configure LDAP authentication for Percona PMM - dbi Blog","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:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/","og_locale":"en_US","og_type":"article","og_title":"Configure LDAP authentication for Percona PMM","og_description":"One question that comes often out working with Percona Monitoring and Management tool, is how to use LDAP to define users which can connect to the PMM web interface. Let&#8217;s see how to implement this kind of configuration.","og_url":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/","og_site_name":"dbi Blog","article_published_time":"2022-02-21T14:22:14+00:00","article_modified_time":"2022-05-31T14:36:44+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png","type":"","width":"","height":""}],"author":"Elisa Usai","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elisa Usai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/"},"author":{"name":"Elisa Usai","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f"},"headline":"Configure LDAP authentication for Percona PMM","datePublished":"2022-02-21T14:22:14+00:00","dateModified":"2022-05-31T14:36:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/"},"wordCount":406,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png","articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/","url":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/","name":"Configure LDAP authentication for Percona PMM - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png","datePublished":"2022-02-21T14:22:14+00:00","dateModified":"2022-05-31T14:36:44+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/02\/Users-config.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/configure-ldap-authentication-for-percona-pmm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Configure LDAP authentication for Percona PMM"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f","name":"Elisa Usai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","caption":"Elisa Usai"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/elisa-usai\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17132","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/42"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=17132"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17132\/revisions"}],"predecessor-version":[{"id":17133,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17132\/revisions\/17133"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=17132"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=17132"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=17132"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=17132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}