{
    "componentChunkName": "component---src-templates-docs-js",
    "path": "/admin/2-authentication/12-certificateauth",
    "result": {"data":{"site":{"siteMetadata":{"title":"OpenIAM Documentation v4.2.1.16 | OpenIAM","docsLocation":""}},"mdx":{"fields":{"id":"10b2eb8f-7eb8-5826-a2f5-f3770270b077","title":"Configuring Certificate Based Authentication","slug":"/admin/2-authentication/12-certificateauth"},"body":"var _excluded = [\"components\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/* @jsxRuntime classic */\n\n/* @jsx mdx */\nvar _frontmatter = {\n  \"title\": \"Configuring Certificate Based Authentication\",\n  \"metaTitle\": \"Configure Certificate Based Authentication\",\n  \"metaDescription\": \"This section describes how to configure Certificate based authentication\"\n};\nvar layoutProps = {\n  _frontmatter: _frontmatter\n};\nvar MDXLayout = \"wrapper\";\nreturn function MDXContent(_ref) {\n  var components = _ref.components,\n      props = _objectWithoutProperties(_ref, _excluded);\n\n  return mdx(MDXLayout, _extends({}, layoutProps, props, {\n    components: components,\n    mdxType: \"MDXLayout\"\n  }), mdx(\"p\", null, \"This section provides instructions on how to configure Certificate Based Authentication in OpenIAM in simple steps. \"), mdx(\"ol\", null, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Create Certificate Authority (CA) to create and sign Certificates, that will be used in authentication\\nThis can be done using Linux command prompt and commands as follows:\")), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"openssl genrsa -out ca.key 2048\\nopenssl req -new -x509 -days 3650 -key ca.key -out ca.crt\\necho -n \\\"00\\\" > file.srl\\n\")), mdx(\"p\", null, \"Enter CA password (not less than 4 symbols) and CA info. For example:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"Country Name (2 letter code) [AU]:US\\nState or Province Name (full name) [Some-State]:NY\\nLocality Name (eg, city) []:NewYork\\nOrganization Name (e.g., company) [Internet Widgits Pty Ltd]:OpenIAM\\nOrganizational Unit Name (e.g., section) []:development\\nCommon Name (e.g. server FQDN or YOUR name) []:*.openiamdemo.com\\nEmail Address []:admin@openiamdemo.com\\n\")), mdx(\"p\", null, \"ca.key is a private key and should be stored in safe place. It will be used to sign client's certificates.\\nca.crt is a certificate that should be installed in Apache and in client browser.\\nfile.srl is a file that store current serial that should be increased every time new client certificate is signed.\"), mdx(\"ol\", {\n    \"start\": 2\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Create client certificate\")), mdx(\"p\", null, \"2.1 Create sign request (CSR):\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"openssl genrsa -out user1.key 2048\\nopenssl req -new -key user1.key -out user1.csr\\n\")), mdx(\"p\", null, \"You will be prompted for key password and Certificate info. For example:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"Country Name (2-digit code) [AU]:US\\nState or Province Name (full name) [Some-State]:NY\\nLocality Name (e.g. city) []:NewYork\\nOrganization Name (e.g. company) [Internet Widgits Pty Ltd]:OpenIAM\\nOrganizational Unit Name (e.g. section) []:development\\nCommon Name (e.g. server FQDN or YOUR name) []:user1\\nEmail Address []:user1@openiamdemo.com\\n\")), mdx(\"p\", null, \"2.2 Sign CSR using CA.\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"openssl x509 -req -days 365 -in user1.csr -CA ca.crt -CAkey ca.key -CAserial file.srl -out user1.crt\\n\")), mdx(\"p\", null, \"2.3 Using PEM certificate in curl or from applications\"), mdx(\"p\", null, \"To use PEM certificate in curl or from applications, you need to create PEM certificate that will contain both certificate and key. To use it without user interaction, you also need to clear PEM password in a key.\"), mdx(\"p\", null, \"To remove PEM passphrase from key, if it exists, and to combine user1.crt with key without passphrase, use the following.\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"openssl rsa -in user1.key -out user1.no_pass.key\\ncat user1.crt > user1.pem\\ncat user1.no_pass.key >> user1.pem\\n\")), mdx(\"p\", null, \"Now it is possible to usr user1.pem in curl requests (in --cert parameter):\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"curl -k \\u2014cert user1.pem https://lnx1.openiamdemo.com/webconsole/\\n\")), mdx(\"ol\", {\n    \"start\": 3\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Convert client certificate to pksc12 format that can be used for import into browser.\\nThis only needed if you want to use client certificate from browser.\")), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"openssl pkcs12 -export -clcerts -in user1.crt -inkey user1.key -out user1.p12\\n\")), mdx(\"p\", null, \"You will be prompted for \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"Export Password\"), \":\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"Enter Export Password:\\nVerifying - Enter Export Password:\\n\")), mdx(\"p\", null, \"Generate and use your new Export Password here. You will need it to add your .p12 certificate into browser.\"), mdx(\"p\", null, \"The user1.p12 and ca.crt files need to be copied to client's computer and installed in browser. User also will need Export Password to add user1.p12 into browser.\"), mdx(\"ol\", {\n    \"start\": 4\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Configure Apache\\nThis step is only needed if you want to use client certificate from browser.\")), mdx(\"p\", null, \"https should be already configured on Apache. To configure using client certificates in it, follow the next steps.\"), mdx(\"p\", null, \"4.1 Configure CA bundle on linux box with apache installed\"), mdx(\"p\", null, \"Do \", mdx(\"strong\", {\n    parentName: \"p\"\n  }, \"not\"), \" overwrite /etc/pki/tls/certs/ca-bundle.crt! \"), mdx(\"p\", null, \"Create backup and use \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \">>\"), \" to append data instead of overwrite.\"), mdx(\"p\", null, mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"openssl x509 -in ca.crt -text >> /etc/pki/tls/certs/ca-bundle.crt\")), mdx(\"p\", null, \"4.2 Add or check that this line is already added in Apache ssl configs:\"), mdx(\"p\", null, mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt\")), mdx(\"p\", null, \"4.3 Add this configs in virtual host config. It'll inform client's browser to send client certificate in requests:\"), mdx(\"p\", null, mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"SSLVerifyClient optional\")), mdx(\"p\", null, mdx(\"strong\", {\n    parentName: \"p\"\n  }, \"Note\"), \" that Apache should be configured to use https to be able to send client's certificate to server. Otherwise, http will not work.\"), mdx(\"p\", null, \"4.4 Restart Apache\"), mdx(\"p\", null, mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"service httpd restart\")), mdx(\"ol\", {\n    \"start\": 5\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Configure Authentication Provider\")), mdx(\"p\", null, \"Navigate to the the current Authentication Provider, and enable Certificate Based Authentication, as shown in figures below.\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1035px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/1132d/AccessControl-AuthProviders.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"86.87258687258687%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAARCAYAAADdRIy+AAAACXBIWXMAAAsTAAALEwEAmpwYAAADNUlEQVQ4y52R22tcVRTG94NQnwQp44sUKlixqCAiJZ3JUKqZmYZAjClJGtvQ1DaktrX6VhDxxb+g+FCoCD5EeqRN7IWIFsHpTDK5zMlMZjJh0gu9mbTJXM5lzmXOmX32/mSfxpY2I2gP/Fib/bG+8621ycn24RcTV8fPJmenLshy7tzklCxdm0xL03N5KZNdkOLxCSl+bUKamJyREslpSZ7L+aRSs1IqlfZJy/M/J5JTI2fOfL+VvPzKlkBb52Dj4PApDAyfQkfXIfTv+wyf7P8c/cPf4MCJb9F35Gt0D3yJA4dOom/gBCJdnyLSdRid+44j1j2Ejt6j2NM9hHdbomHy0uZXA9uDPaX3dg9gZ8dQY1dwL90/+BXt7fmCfhT+mH7QdYxub+2n4c6jdEfkIH0n3E8/7D5G32jp8euO6CB9c2ev91aoz9n69u4gaWkJBhLJVHUuLUOWZbYky7yYSPA7k0leXszzQuJPnv3jd56bneHZTJbnslleyOV4NpPxz/MZH6RnZunp09+FSDTWHlB0u2o5HhwGdq94A/GfJCRHziE/PQdwCoCv0/RbFzi9Mv5biLRFYoHl1Wq1pBgo6za7W7yBTDyJpUwe9/IFuKYJyjg8j4FSD573NJR6nDEG267TC2OXQ6QtGgs8KKnVqm6jrJpMt+pwXefx7+16Ha7jgHPuI5qF0T9nxpif0HFdOvrLs4aaxSqKjtLaGgzDgG3bcF3Xh1IK5lFomgZVVdFoNHydUuondByHjl688rRhRbOYGN2uuzBNE7qu+0bC0GPMXxbj3E8sUgpTkVCkbWooRq5olr+rDTunNlAYwdVfx6Eb9Q2P4jYdWTVZWTX9BsNyULOcJ9W0YVRWsLyyCrVmw7Af3dcsh5u2C0Uzmj+KSChMS8oziDvdhVJznuiPKi+rFh6UNXp+7F8SCtOmqCY26iYXvasVfd0wEgusrCllIZYUw1s3/c+Inopm8YdlzT0/eilIonvaAyXFMGs2hWa6z4VuUT/t2KXxVhJqDW/OFZbmC0u3Hi4Ub95fKN78639yv1C8tZxbvH777A8/vk8IIS8QQrYQQrYRQl5/TkTva4SQTX8DPs4exEeqkVcAAAAASUVORK5CYII=')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Auth Provider Configuring\",\n    \"title\": \"Auth Provider Configuring\",\n    \"src\": \"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/e3189/AccessControl-AuthProviders.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/a2ead/AccessControl-AuthProviders.png 259w\", \"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/6b9fd/AccessControl-AuthProviders.png 518w\", \"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/e3189/AccessControl-AuthProviders.png 1035w\", \"/docs-4.2.1.16/static/0c7629682ae7864cb591796fc3c43a9c/1132d/AccessControl-AuthProviders.png 1158w\"],\n    \"sizes\": \"(max-width: 1035px) 100vw, 1035px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1035px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/1132d/DefaultAuthProvider.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"86.87258687258687%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAARCAYAAADdRIy+AAAACXBIWXMAAAsTAAALEwEAmpwYAAADNklEQVQ4y52RXWhcRRTH50HQJ0HK+iKFCopELChYibuNUsxuGq1FQpO20bSVfkSMBsWHgKgPvvioKBioFqwILiapRumDldKa/Up2t3t3m63b2FIwTZPu193d+7l35t7zl9msNaRGtAM/zgxzz++eM4eN9g7fM3Pm9PFIMjGZTue+TSRS4VgsGU6llPCvM/HwufPRcDQ2G47G5iTfRWNzJz8bP/n0O+9+1BGJzH4eT6QmU+lseCaS+GZ8/Ist7L77N/u6dx/iB4fHcGB4DMGXDmPX/lHsfvlt7Dv2HoZGPsTA0ffRN/QWXnl1FANDI/CHBskfGhQv7n0dO/uO4oWB11rx8c5QF7t30wO+Dn9/6YkdQwg8f4Q/9uwB0X/kA9E7OCa2hQ6L7j1vio7APtG165h4KnhQbH1mvxvc8wY6/HvxXN+Iuy14iD/S2e8+6h9obtm6w886O/2+mUi8qlzIQEmnvUvzecpnM5Sem6NEPE6z8Rilk0nKKVmS32QVhfK5HCmZDGUzCl3MZmmh8BtyiiI+/uTTAOsO9fhqmlUVLsFqOp5HgGlZqKlVNBo1aFoD/7Ycx6HC79ewuLQszvxyNsC6gz2+pZvVarlmoKjqXknVoRsWLMuCaa5GIdw1CAjXQ1OsCv+4vkxffj2Jn89G28JQj2+5VKtWGxbKNcOTsVZvQNM02LYN121L2rgegVsa9KWL4C4BJHuSwRMTU9O3Cyt1E5puQFXVFlLqOM4qzWarSvkcC8nzcD3Adhyy7SZ03RBTP/y0cYXFYhFVVW217HB+S8qFB1srwzx3Anz5BhytQbJy0zTF1Pc/3i6Ub+lwASJqIRd3PZg2B5HXHgSH0zQAIQBDo/ZwxORGQrvJ4boeeHsQvI24dZZ31BoO94hcz4Np2f8slG8opWupSOrrzn/fk8xZKdfFxKkNhetZ+wNz/Z4qdQs3K38Jgz2+G0W1LEUlVXfbbf9nZE6lbtJKue5MTE37WWhnr6+k6oZmCdQN545omAKyoFPTp7ezwPauTbn85Wz+8tWV+cKVxfnClev/k8V84epS7tLCteMnvnqSMcbuYoxtZow9zBh76A6RuQ8yxu7+E/xeHK0hlr62AAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Default Auth Ptovider\",\n    \"title\": \"Default Auth Ptovider\",\n    \"src\": \"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/e3189/DefaultAuthProvider.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/a2ead/DefaultAuthProvider.png 259w\", \"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/6b9fd/DefaultAuthProvider.png 518w\", \"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/e3189/DefaultAuthProvider.png 1035w\", \"/docs-4.2.1.16/static/2c96e06ace876ed99d7d04f073f36695/1132d/DefaultAuthProvider.png 1158w\"],\n    \"sizes\": \"(max-width: 1035px) 100vw, 1035px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"Now, there exist two options: \"), mdx(\"ul\", null, mdx(\"li\", {\n    parentName: \"ul\"\n  }, \"Add a Regular Expression to the Certificate. This will assume that the matching group in the Regex is the principal. The Regular Expression in the example is: \", mdx(\"inlineCode\", {\n    parentName: \"li\"\n  }, \"CN=(.*?)\"), \"; or\"), mdx(\"li\", {\n    parentName: \"ul\"\n  }, \"Define a Custom Groovy Script, which will have custom logic to parse the Certificate to get the principal. \")), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1035px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/1132d/SupportCertificateAuth.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"111.58301158301158%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAWCAYAAADAQbwGAAAACXBIWXMAAAsTAAALEwEAmpwYAAADQElEQVQ4y6WUy24cRRSGS0IiD4CMWEQKz8AOR1kgkhhY8yys2SGxsuQJNiKJQjYIEnA8JrCICCAsxVIsO/Flxp4e0ww9l3ZP37u6qut6UNV4ong0gyOlpF911Kr6dM6p/zT6/NPPLhxub3zR7hwtD7r9pY77d63VaNY6rltrHhzU9nZ3a4fNplWz0ai1HafW87ya226PtdTzvBvOUWvxx3v3L6KFhU/mvJ4v0zSDLMuAEAIm9n0f4iiy39I0tcqzDHBR2DMlxlDi0u6UUoiiGFZXH1xBH3x4dc4Ps6AgFaQ55pgwoQFEGIaCMyaUUqJiTDDGhNZaAMCkOADIktDqzrd359G16wtz/SCOwrSEIMYqiLFmXOgoinRVVZpzrgkhNhZCaKXUGUkpNQBAnhfixlfLl9FVC0yiKCMQJlgNEwxcSAjD0JYmpYCqqkApZSWlnNQIWGCxsvL1WeBwAmhAFeNAqQHKabAzwOX/AwZBYIEmripuL4+zfFmvDPQ8D+I4Bs4lFJgCpQy01tOg5wOFVNDv98EfDMxZe9HAZuh8IBMShkEARZEDrTgkaWkzHGc1ztTspmSzW+DyyuySh8MhUGNgQiHLMHAuLECI0aszxqyMrUyGZUnED/fuzwaaKTFK4gjSJAY+umxhdmry3E4RpXQEJFTU19dnl9w9ObEjMF7KjIOUcNqyF2vcQwNcW6tPAWYEGC7B39yA5MnvkD39C5LNP4EdH54C1NRHmQ1MS+C0gsHeM8B//Ar80Srwx+ugBp7NUk34cexDC6zXZ/VQ6X4wBCzsYS1NuSaYYp+xD88BSuh1u7osclBSAKuoNo8ydVJeCciltraRyjRIc3PxtFlTpmUCeG1hrncSD0e/r0IEcaEYFyqJI4WdpsL+QKW9rioDX+G8UCWhSkr5QkKMnI1Lwh6s1efR9Y8+fjuIizInAlLMIcUMRqNUQNXah99u34ZvvlyEnxaX4Lu738PPjzZg2jJtevjwlyvo/fnLb23t7G/u7DXd7eeN1vbzhuM4befp1pbzbP/Acfd3nfbujvPPwZ7zr+s6nU7HOT4+flkt13XbR0etxs2bt95DCKE3EELvIITeRQhdeg1dRAi9+R89t98mg0aQXQAAAABJRU5ErkJggg==')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Supporting certificate auth\",\n    \"title\": \"Supporting certificate auth\",\n    \"src\": \"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/e3189/SupportCertificateAuth.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/a2ead/SupportCertificateAuth.png 259w\", \"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/6b9fd/SupportCertificateAuth.png 518w\", \"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/e3189/SupportCertificateAuth.png 1035w\", \"/docs-4.2.1.16/static/c19ade7a793305f582f291939eb62b3d/1132d/SupportCertificateAuth.png 1158w\"],\n    \"sizes\": \"(max-width: 1035px) 100vw, 1035px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"5.1 Optional step: Configure CA Validation script\"), mdx(\"p\", null, \"The ExampleDefaultCACertCheck.groovy is:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"import org.openiam.am.cert.groovy.DefaultCACertCheck;\\nimport org.openiam.exception.BasicDataServiceException;\\nimport org.openiam.idm.srvc.auth.dto.Login;\\nimport org.apache.commons.lang.StringUtils;\\nimport org.openiam.base.ws.ResponseCode;\\nimport java.io.File; import java.nio.file.Files;\\nimport javax.security.cert.X509Certificate;\\n\\nclass ExampleCACertCheck extends DefaultCACertCheck {\\n    public ExampleCACertCheck() { super(); }\\n    public Boolean resolve() throws BasicDataServiceException {\\n        try {\\n            clientCert.checkValidity();\\n        } catch (Exception ex) {\\n            throw new BasicDataServiceException(ResponseCode.CERT_CLIENT_INVALID, ex.getMessage());\\n        }\\n        if (caCert != null) {\\n           try {\\n               caCert.checkValidity();\\n           } catch (Exception ex) {\\n               throw new BasicDataServiceException(ResponseCode.CERT_CA_INVALID, ex.getMessage());\\n           }\\n           try {\\n               clientCert.verify(caCert.getPublicKey())\\n           } catch (Exception ex) {\\n               throw new BasicDataServiceException(ResponseCode.CERT_INVALID_VERIFY_WITH_CA, ex.getMessage());               }\\n        } else {\\n            throw new BasicDataServiceException(ResponseCode.CERT_CA_INVALID, ex.getMessage()); } return true;  }\\n}\\n\")), mdx(\"ol\", {\n    \"start\": 6\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Configure Content Provider\")), mdx(\"p\", null, \"You can do so in the Content Provider Screen. Navigate to Authentication Levels and add 'Certificate Authentication' as shown below.\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1035px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/d3f96/ContentProvider.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"56.75675675675676%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAALCAYAAAB/Ca1DAAAACXBIWXMAAAsTAAALEwEAmpwYAAACpElEQVQoz6WSX0hTcRTHf9VTEfSQPfnmixRGkIYm0YMUCGIaNRXLGTlKwxJRegiCoB56NChSr0TlEjfd2lya5UNkZDXd3e7u3R9czIxU2h83d++d235/TmyLAqunvvD9Hc6B8zmHww8hhLbxszO37YL9sd//eUAUvZzDJXGiL8A5HE5u3r7AuVwi53JJnNPp5kTRw/n9AU4QJM4tSJzo9gz6fItDTqfwYNw4VogQQjs1zR2hzp5b0NZ5AzQt1+BiW2/O7T13ofXqHWjWXQddey/oOnrhzPlOONXUARptFzRe6Ia6piugae2Cy103YXCgvyIL3FVUWhc4UNkAh6q06SNltbim5hI+3dCNq8trcWW1Du8/fg6XHGvE5Se1uKi0Hh+uasHFFWdxcYUGl53QZgoP1tCq+nZ1zDhangM+GTYGTWYbWKyTdMY2xWYtU+z9uJX53rxl03o90/cPMv0zIxsxPGdPhw3Map1kFusUM5ttbGLiJRs3TcCLydcpm82WB0bjcpBSBhQYVVa+wav+IZi+/xBsj0ZgVRQA1DiQlSUgsQgQnIYtYtkHY5waNRjzwC8roWBC2YR4QqHR72EIShIsLwYgvLQEcjSa62CEAIuvA8tkgFAGmBAghADGhDHGICGrKYPxJ/DrajgY3UhCOKbQ6IbKEqrKWH4ykxWFJVWVEUIZzXEJo5T+crae3VBRk7+ByyuhQCSuQmhdzkRiMolEwkRVVUIwzkVKKcEY5/Ktwhjj7IqyoiZHDYY8cC0cX5M3CWyoGYjJKVA3U5BKpSAUCkE6/cfN/qp0BoPJZD6a+4fv5uyWjwsu6cO80zH3ieedgsj7fF5eEARekiTe6/HwXq/3X3b4/X6X4HbP9fXdK0EFBfu2I4R2I4T2/qf3IIR2/AD6d2FFk8SlzAAAAABJRU5ErkJggg==')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Content provider\",\n    \"title\": \"Content provider\",\n    \"src\": \"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/e3189/ContentProvider.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/a2ead/ContentProvider.png 259w\", \"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/6b9fd/ContentProvider.png 518w\", \"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/e3189/ContentProvider.png 1035w\", \"/docs-4.2.1.16/static/7d7be6c91e956214de59683cc869b576/d3f96/ContentProvider.png 1093w\"],\n    \"sizes\": \"(max-width: 1035px) 100vw, 1035px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \"), \"\\n\", mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1035px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/c0ebd/AddAuthLevel.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"74.5173745173745%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB/klEQVQ4y32USY6cQBBF+/538cpe984bH6BXlqwagYScZ0j4VkQ1bttV1SmFgBxe/ph4qSljFGdY72Ctg1IaWmt47yEniWmaoJSClJKf1lh452G0Ydu/tdKodcaLGAQOpwsug8S5m3DtJyip4J2DNQbDMEAIgVGMDHXOsRFot+AD+n5gIS+DGDGZBGkTJhNhY4UxBn3XYW0NKSXknLGuK2hs23ZnNEJMMMbegEJ5hgkVYHxmRcfDAW1ZEGNgKLnTWnto2DZoYyCl2oGBgaO+AbU27B4BrQvIpbLCZ0BSSTCK9z0wFF7QSoGc8T5gnudPgTSk0vdA8Q6kRFCAaeRcUOoHkJ5/26dAUqhdRsoZrS18wNiIEDPae1J2F8n2d9pnneNQ3QGVS38Oz23D8XyFcxY+VZwvF868nCaM44hlWdB1HUop8CFydTxQmHhD8J5vzqVgXmbUlLj+KK51WVDm+aayFr6cKuEx0GeEELh0lJJQUiLEiC14bGOPNnRYvcNWMpeSzA0qN1yEfq6w1spQMmrBGCNKrayyhoA89KiXE/TxhO9fX/Htyyt+vB1hrX1chwSgReoQcp/KhuBd30NME1IpqOuK5B3Cr59o/RUlPY3hDULxIgjBKJukmg7QRbUUjm91Dp4SBcDSD8M8yfLen//37j9z64rtY4IbgIC/AdBjgr1Gf+6xAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Add Auth level\",\n    \"title\": \"Add Auth level\",\n    \"src\": \"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/e3189/AddAuthLevel.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/a2ead/AddAuthLevel.png 259w\", \"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/6b9fd/AddAuthLevel.png 518w\", \"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/e3189/AddAuthLevel.png 1035w\", \"/docs-4.2.1.16/static/7443eb60c716d860dccada48520cc63d/c0ebd/AddAuthLevel.png 1177w\"],\n    \"sizes\": \"(max-width: 1035px) 100vw, 1035px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"If you see warning pop up about modifying default settings, as shown below, click 'Yes':\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"328px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/790de5a1a7ba732bfd3e2f12ecdc8686/d5c60/AddAuthWarning.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"100%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAACjklEQVQ4y6VUS4vTUBTuLxLFlRtF3LoTBFezEFezcCOC7kYRnIXIwIj+ApmlLhVcuBKkcWyTcSYTmkfT9JG+X0nbNPnkO53UvpCKB07u69wv33fuPTcznU4xGAzQ6/WWvN/vo9fb1mfxURQh4/s1hGGIJEmwaPzRth7HMcbjMfxaDRnP84ShqqowTROGYcB1XfyrkR33ZSzLwmg0wnA4FGBSbzabwnhbp00mE5BcxrZtAVw1ytjWCUrJpVJpJpmD/zVKFkB+SJder9fRbrfnXq1W4fs+Wq0Wut0uarWa9BuNhqwxNTzQVPIckOiUXSgUJLGVSkXaYrEoQWypJG2Zd87TO53OZkBOMJ8EI9NyuSx9MkyBU+caY9gn8yVAz/sjmYGcdBxH+pSUMkxB6PwR5VN2EATLgLbtCEMeDGUyiPeRIJRGibZlCUjKTuZsW8aLgHIPtZNzGchN930JYstNrltEhUx8H45lCSsCciNVEJSxKzl0EUUzQB6KruuyiX8ORiMEzTrCdhPDSYQxx0Eol5/rPEgCLTHkhwPKZs54aqyauYUB8OUjMJglH0n893vIfG262FJW0ylYWImhIdm5haTbkjEh44tHgb5yyp5QJ8Di6yHOPjd324gPnyH+/AGx8g0w9TUC89LjJ2W4VvisU84XDCRv7iPeuwy8u4fzt6+x+2QfDx+/wO6j57AcT/bPc0j9m+3ijbRM4OlVJA8ywKtr+P5yD5du3MXN2zu4cv0OfqpnEuY4xZlkvriUzbpc8iBAGE0RlhyER4cI3+9jdHSA7tdPOLdLOD0zoBsm+v2BPH0imVdA0zRks1koirLunD8+hvJLh3JqIHui44eqQc3noakqNDUvcblcTh6U3/tk4CZ1ivRHAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Warning\",\n    \"title\": \"Warning\",\n    \"src\": \"/docs-4.2.1.16/static/790de5a1a7ba732bfd3e2f12ecdc8686/d5c60/AddAuthWarning.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/790de5a1a7ba732bfd3e2f12ecdc8686/a2ead/AddAuthWarning.png 259w\", \"/docs-4.2.1.16/static/790de5a1a7ba732bfd3e2f12ecdc8686/d5c60/AddAuthWarning.png 328w\"],\n    \"sizes\": \"(max-width: 328px) 100vw, 328px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"Add 'Certificate Authentication' using steps, described below:\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"763px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/11b3db1eeeb28b5ce26d825e5263b8f6/5e3a3/AddCertAuth.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"50.965250965250966%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAYAAAC0VX7mAAAACXBIWXMAAAsTAAALEwEAmpwYAAABhElEQVQoz42S22rcMBCG/f5v0bdoLgpLQ1tSSq4CbaHN4l1v1o61PupgWZK/Ijm4m5sQw4eFNPP/0sxkwzBQFAXn83mjLEuapiGEgPf+XYSw/jOtNW3bEoWvkVJird2Ypmnjen9lQpmJeZ7JnHOvEowxiWiklEJJiVbyleB2phTamLT3q2hQxpKN40hVVZtYFI8miXnGA8NkOeQ5xfHI0+mE0Xo9845LLbgIgQsh5WTRJdZMCEFd1/R9///G1jIf/jL++EIpBJUQlHWN1IbZeRxw+faZ5v471vtkksXkrus2Yj1jQxJxXZXoh3vc4ZH5lDMXOdNhjz0+Yo4Fy/4T8uYDen9kAbI3u+ccAbB/flLubjjf3fL0dcfz3S3T7wfa3Uec7FmCJ6ROB7Jlibpvf95a+voZ3XeorsUMPbiZTtQ457e4JSzrk1O3tE7Ewkana5z3XNoWqTVSafzLJdqXei8xzq+xWaxVnufrUJdntFZJNM7UNdFUjmOa0TgNSbBt0/o6/h97ogKCm947RgAAAABJRU5ErkJggg==')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Add CertAuth\",\n    \"title\": \"Add CertAuth\",\n    \"src\": \"/docs-4.2.1.16/static/11b3db1eeeb28b5ce26d825e5263b8f6/5e3a3/AddCertAuth.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/11b3db1eeeb28b5ce26d825e5263b8f6/a2ead/AddCertAuth.png 259w\", \"/docs-4.2.1.16/static/11b3db1eeeb28b5ce26d825e5263b8f6/6b9fd/AddCertAuth.png 518w\", \"/docs-4.2.1.16/static/11b3db1eeeb28b5ce26d825e5263b8f6/5e3a3/AddCertAuth.png 763w\"],\n    \"sizes\": \"(max-width: 763px) 100vw, 763px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \"), \"\\n\", mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"756px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/8e93939bece3f1a31182889901d14225/8ae3e/SaveCertAuth.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"41.31274131274131%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAICAYAAAD5nd/tAAAACXBIWXMAAAsTAAALEwEAmpwYAAABHUlEQVQoz4WQ20rEMBRF+/9/4aMP8wV+gCAIPoiCj8P0kkwv0bZpkjZdcqJVqYMGFkn2Sc5lZ23bcjweOZ1OiTzPyfMC0WOMzPPMsiz/EuPCMs9k02Tp+55xHBmGISFnay3ee5xz33iXtJ+I7p3jbZxwPpCJKJ8vIYm35HstIcWtZZomXvKW3joyYwxN06S2ZbxtRNll5M2SoijQWn+8kXgIRKBWZ3RZsUKKZTJuWZYopaiqiq7rUsWtI7lXSqGUTnF5L1NN40B4esAcrjD3t9hhIIRAJp7VdZ06kU73GPOKrg36bFC6o2nfkmd+nhnPNe7ugLm5pnl8xsdIJm3ujd4jlX8h+hLxK2kPn3Zl4pOsdV25tET/kxi/zpLrHZzdahlsfEqUAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Save CertAuth\",\n    \"title\": \"Save CertAuth\",\n    \"src\": \"/docs-4.2.1.16/static/8e93939bece3f1a31182889901d14225/8ae3e/SaveCertAuth.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/8e93939bece3f1a31182889901d14225/a2ead/SaveCertAuth.png 259w\", \"/docs-4.2.1.16/static/8e93939bece3f1a31182889901d14225/6b9fd/SaveCertAuth.png 518w\", \"/docs-4.2.1.16/static/8e93939bece3f1a31182889901d14225/8ae3e/SaveCertAuth.png 756w\"],\n    \"sizes\": \"(max-width: 756px) 100vw, 756px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"Enabling Certificate Based Authentication for a Specific URI pattern can be done in the URI Pattern screen.\"), mdx(\"ol\", {\n    \"start\": 7\n  }, mdx(\"li\", {\n    parentName: \"ol\"\n  }, \"Configure client's browser\")), mdx(\"p\", null, \"User will need to copy user1.p12 and ca.crt files on local computer and install them in browser: browser will check user1.p12 using ca.crt before send it in request. This is why you need to install both.\"), mdx(\"p\", null, \"7.1 Installing ca.crt into browser\"), mdx(\"p\", null, \"Go to certificates config:\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1001px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/88c4d6a89876ef6ba1fe38f9e8ba01a6/6acbf/CertificatesConfig.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"71.42857142857143%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAYAAAAvxDzwAAAACXBIWXMAAAsTAAALEwEAmpwYAAACH0lEQVQ4y22TaY+kIBCG+///sPmyR2Y3O5tNHx6IreIBggfgxHdT2PY4yXx4Q4HUUwflKYmjlfMMec5XISokLMM1yZDmJXjV4JIwJIyBsRSMMVRVCbpXVZvIFqJay7JAURTrKU1iXK6X9Xq7QlQVanaBSM9IXn/g/vc32K+fqOMbxnGAMRpa9+j7HlprKKUIAoJFcbRS0JNzfl38Alrn2cI6BzvPcErCKgWrJJwxsNYFOWuD6I4xFMRgnu3q/YK6adbTOE4Qog4fNwcHqw2UmSBVD6UNOlqVgpQ95OAgB49u8LDOUyJBy/KOpmlxMsOIJE3RdhIegOcp+uiKsulgtMY4jBgOGu2C0b7DzAvmR9ZUGWW4AaMb4pfv6N7eIP+dMX17QcUY4pSh6ySkVGjbLthBTYO2aSA7uVXkfFgX/8hQFSUur39QXW9Bs6hQixppysB5HkR2xjLkRQUuFESzBTgC/Q6ktMdpwmQdptnCLe+hBILcbhEYyxBFMYqihOoNZD9AmzH0bId9ArpDY5/RnH+84ACtzVOG1n4bm2N2n4D7wceHBfd7gfP5grpuQFNA4L7XQfudr/y+BFJUeoiypD9BhFLpUSjDI9Bvs/u0qQVt+yh5P9htAlD/kiRFlnEo1X8qn/YEn6b5GYh8KXjIkA4pK3IiIF0gEA387nAUAUNPzQDO72ESCJ5x/gGkSzS4x0YfS/pKNA17QNrn+R3/AdEAKwPmmT+wAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Certificates Config\",\n    \"title\": \"Certificates Config\",\n    \"src\": \"/docs-4.2.1.16/static/88c4d6a89876ef6ba1fe38f9e8ba01a6/6acbf/CertificatesConfig.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/88c4d6a89876ef6ba1fe38f9e8ba01a6/a2ead/CertificatesConfig.png 259w\", \"/docs-4.2.1.16/static/88c4d6a89876ef6ba1fe38f9e8ba01a6/6b9fd/CertificatesConfig.png 518w\", \"/docs-4.2.1.16/static/88c4d6a89876ef6ba1fe38f9e8ba01a6/6acbf/CertificatesConfig.png 1001w\"],\n    \"sizes\": \"(max-width: 1001px) 100vw, 1001px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \"), \"\\n\", mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1001px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/f0ae6ba33aab886cdd29f23888237c61/6acbf/Authorities.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"71.42857142857143%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAYAAAAvxDzwAAAACXBIWXMAAAsTAAALEwEAmpwYAAACRklEQVQ4y3WTiW7iMBCG8/4PtYdWW2ih0EJIshJXSiEJOZz7xt8qpl2tSmvpy4w8o5k/9lh7PRyk67l4nidFFHJ0HOyjy9EP8UTCbvAdh9PpxMk5EYUhUXSDDMOAIPClNp1MGI1Hcjwes9J1jMcRxvye6Y9vLH7/Yv7zO9bTDNu22e92bAa2W7abDev1muVyga4veXi4l/P5DM0wDGlZFpZlScMwUL6uY03usR4nmOM7pqMR9/Mnpo8zzNkU8/kJwzQZ8t+Q71ar64ayqijKkqZtKcuKpuupq4r8j064XVNYOvXaonzZ0XkOXVXSdT1d192gZXlOJBLCSJCkGUEoEHGK8AN24wf0yQJvPqN3XukukrbrabqOpmk/RRNC4Pu+IhKCKBqIrlbEiCgiEDFxXhDHglgIsjQly9Kr/YAm4hjbfmG/t/GDgCwvlNK8KBiOo6obZZMkJQgj0jSjqmrKL9CGjx8K3HOAN4zKG2Xd0nQX6ran7SVRnOJ6PkXZ0HaSpr2o+Ee0Qc3ePrDe7llvdmw2Ow5HhzQrqJtOFRwSRZKpRnlR0bS92v+Mq8IgUt2PjotzDnl1XLWnbvtNYSgSHPesCraDmqHRJ2hxkuJ4vlJQ1S3V+UyVFzS9VKiC3YUsL9VvF1XzpTqlMM8LpWY4cJFX5Ktnkskd6W5D7nlkZU1elGqcvPP10io1u7cMgjQpJe+rH9wioz3suRxtSMU1ICX/53215EWirVYrTPWMTEzTwrw+Q2VN64+KXbH++UPuDabJYrHkL1Y0HU78QP1xAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"Authorities\",\n    \"title\": \"Authorities\",\n    \"src\": \"/docs-4.2.1.16/static/f0ae6ba33aab886cdd29f23888237c61/6acbf/Authorities.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/f0ae6ba33aab886cdd29f23888237c61/a2ead/Authorities.png 259w\", \"/docs-4.2.1.16/static/f0ae6ba33aab886cdd29f23888237c61/6b9fd/Authorities.png 518w\", \"/docs-4.2.1.16/static/f0ae6ba33aab886cdd29f23888237c61/6acbf/Authorities.png 1001w\"],\n    \"sizes\": \"(max-width: 1001px) 100vw, 1001px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"and import ca.crt in Authorities, as follows.\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"559px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/bf69eff3070e94b3da2fec2d63fe4a2d/a65ce/SelectCA.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"66.79536679536679%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB4klEQVQ4y6WSzYvTQBiH8y968+JJT4L6P4iuB1HUi0gLynrY82JBd6Vq1xWlsum6iM1H89HJxzRJ0yYzSValmZ/MVFA8CN0NPLyZl8yT98eMlkZea37VkYSuaMoMoWeBBh4838fYMDA2TTiuC8O0YFoW7IkD07IRhBEojfBJP8Hl7lhceHiC68/NVnvat9HZ+ya6+ya2B1N0+x52hwFoHIMVC3yvOX6eVjitGbKEYjFP8KNZ94pFihmNoFsxBiNHHFshtCvPXHFjh+DaDhGXOhNcfDLB1W0Hnf4U9/di3H1FcasXYasX4d7LADd3CW73YsWdXogHrykev6Hi0X6IrRdEaDGNMXEckCBA0zSoKo40LzDyOT7YHAdmiXdGiYHJ8NGpcGAxtZa8t5j65tBmOLQ53hoMWpJQEOIjDAnkO+cMTc1x1keb53MQQuB6LgiZgrESnHOsVi1aIbBqN0NbLhcIwwCOM1FCOaGM3bat+qMQYrMJk2QG13Uga9PU5xfGcQTPcxEEBGVZKJmMfC6h73sq7h8hU0Ip2xRtNqMqspywrisllJz5lLMsxZoEabpGrotiiaIoftd/Wffn8wyp2psp8jyHRmkMGVvWv5G9/yFvxvGXEYafhzjSj6CPdBjGGL8AiujKHCylWtUAAAAASUVORK5CYII=')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"SelectCA\",\n    \"title\": \"SelectCA\",\n    \"src\": \"/docs-4.2.1.16/static/bf69eff3070e94b3da2fec2d63fe4a2d/a65ce/SelectCA.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/bf69eff3070e94b3da2fec2d63fe4a2d/a2ead/SelectCA.png 259w\", \"/docs-4.2.1.16/static/bf69eff3070e94b3da2fec2d63fe4a2d/6b9fd/SelectCA.png 518w\", \"/docs-4.2.1.16/static/bf69eff3070e94b3da2fec2d63fe4a2d/a65ce/SelectCA.png 559w\"],\n    \"sizes\": \"(max-width: 559px) 100vw, 559px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"7.2 Install user1.p12 into 'Your Certificates'\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1001px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/f8f44331f43372668e2db853a628eb0b/6acbf/YourCertificates.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"71.42857142857143%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAYAAAAvxDzwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAByUlEQVQ4y62T647aMBCF/f4P1X/tskCgbIJjC7JAl9zIPZCLc/GpbJaqqkDqrtbSp5kztjwzToYc395kEAYIw1BmaQLXD3A4+nCDE8I4xe7XEa7rwvM8eL6HNE3uIZMkRhxHksxnMzxNnuRkMsHaskCNH6AvBuaGgdVqhcXCAGM2DocD9rsdHMfRvL462G43MM0XWJaJ6fRZLpcLEMqY5JyDcy5txsE4B6MU9tqCbdtYr9eYzQ08T2eYGwtQSu8hb5bUDke+Yci2HDX9iXY1hfCOaMsSoutxqSrUdfOHruvR948hgWnBmpmwpiscjCWyKEZWnJEXJYqiRJykaJoWfT9o1IVd10GITtu/tYIkeYkgjBCcIkRpjijJcIoS+MEJfnjSfprlyIsz4iTT6GTlNalKmOXFuz6DXKoaTVOjruv3jFeaptHctBBCn6mqSvs3lFYd3DRR7/SVi7Si046U8kt4fKGKfSIRacWdloceiANAtB9v+aL+r6aFqvT6gQQubYfac1F9/4bS2aD1PR1TZ9SbP6QfQG6l6sKG4WrHEXIcMRz36PZbIA4x/Ed14ziCqNFijOkxs+1/rBpFxrW9xm1Qeh+1Z5omfgP3NCjFCXXlmwAAAABJRU5ErkJggg==')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"YourCertificates\",\n    \"title\": \"YourCertificates\",\n    \"src\": \"/docs-4.2.1.16/static/f8f44331f43372668e2db853a628eb0b/6acbf/YourCertificates.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/f8f44331f43372668e2db853a628eb0b/a2ead/YourCertificates.png 259w\", \"/docs-4.2.1.16/static/f8f44331f43372668e2db853a628eb0b/6b9fd/YourCertificates.png 518w\", \"/docs-4.2.1.16/static/f8f44331f43372668e2db853a628eb0b/6acbf/YourCertificates.png 1001w\"],\n    \"sizes\": \"(max-width: 1001px) 100vw, 1001px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \"), \"\\n\", mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"559px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/205448e0eff27dc40962570404f19ad8/a65ce/SelectUser1.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"66.79536679536679%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB4ElEQVQ4y52Ty27TQBiF/Yi8A0uqsmNRgXgBJF6AVdWyQNw2vAJCQrEbGikX2zP22PEtcWKPx2lC6znoHze0ygIpjPTpjEfj4/9mi3PWOY4Dz3O1lBJN0xiUUuBBgOlsBsYY/Hs830dd12jbFsk8wo/BEE/fjfWTt1c4PZ90lhABXHemwzBAWZZYr1dYrVbI8xxCCERxhCRJEEUCjDOzpw+TYVVVyPICA7fA93Gmh2wBa7EotBAhvaClrKBUA9VIhNyHY//E8MrGZDyC505w/ctGkSVAd4uDpfdq5XkGii5NE9zcbIxhLSVYlCMpFUr1Gwu5xVLuUKpbo8uGznaIixrzhTT3ZiJHkK5hZVmKIOCgKNM0xaaV4OkKb74FOPsk8PprjFdfIjx/H+DZBcfJZQ/tTy85Xn4WePEhxNnHECcXDFZZLk19OGfGtJE1JDVle4d216El3d6hOUAZOnPnsVrUhDiO4Pteb9hIk/ZDWY5bpoaM+SDdbNq/hl3XQWtAa30UVpLMTbqUdl33XaY5JEPTNn1cpMZw35QHQ3kfoT4+QuoypUwRtq3q59DU8P8WDTZ6chRFDz1X1dr8Cb0e0p/v7xL0lxEWDTSlTfoYOvsXNBmOY8O2B4bR6BrT6QR/AIUtz1QaBM8/AAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"SelectUser1\",\n    \"title\": \"SelectUser1\",\n    \"src\": \"/docs-4.2.1.16/static/205448e0eff27dc40962570404f19ad8/a65ce/SelectUser1.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/205448e0eff27dc40962570404f19ad8/a2ead/SelectUser1.png 259w\", \"/docs-4.2.1.16/static/205448e0eff27dc40962570404f19ad8/6b9fd/SelectUser1.png 518w\", \"/docs-4.2.1.16/static/205448e0eff27dc40962570404f19ad8/a65ce/SelectUser1.png 559w\"],\n    \"sizes\": \"(max-width: 559px) 100vw, 559px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"You will also need \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"Export Password\"), \" that you used when creating a .p12 file.\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"566px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/e34f3a96631efa2d65894976cb355bc7/6fe44/VerifyExportPassword.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"32.818532818532816%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAHCAYAAAAIy204AAAACXBIWXMAAAsTAAALEwEAmpwYAAABI0lEQVQoz4WRXU/DIBSG+///mfHCqCvls7TQFgZOTcai6zZeU6rLLjRePHnOOXk5IVCllJBSyvv9Hrcsc2MtGOdQqgVpKLgQCDHikBJ+yefd7hWVcy577xBjRAgBMYbVLxHjOKDrOhhroDtdaufW7DUXf4jw3udKtRJaq9w0BIw1oLQprusNGKPgnIJSAik5hGAQnGHJErKBELyYkHpxXs5Vw2AwThOY6sG1BdemUPrWgLXf9TJvDYS2paeqh+gsWNuvlHyPKmwd+tEjvB9wPGd8zJeV000939YXHM/AfAE+T/nKKQNvhxmV9xPGaVm6hZnCv3SjL7dspIbsB2jriqns0NqpfAqWpVs/Ff+JWzPW9iD1M+7v78rbaq2Knx4foCTHF81rBGD/WjjQAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"VerifyExportPassword\",\n    \"title\": \"VerifyExportPassword\",\n    \"src\": \"/docs-4.2.1.16/static/e34f3a96631efa2d65894976cb355bc7/6fe44/VerifyExportPassword.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/e34f3a96631efa2d65894976cb355bc7/a2ead/VerifyExportPassword.png 259w\", \"/docs-4.2.1.16/static/e34f3a96631efa2d65894976cb355bc7/6b9fd/VerifyExportPassword.png 518w\", \"/docs-4.2.1.16/static/e34f3a96631efa2d65894976cb355bc7/6fe44/VerifyExportPassword.png 566w\"],\n    \"sizes\": \"(max-width: 566px) 100vw, 566px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"After, check that user certificate was added, as follows.\"), mdx(\"p\", null, mdx(\"span\", {\n    parentName: \"p\",\n    \"className\": \"gatsby-resp-image-wrapper\",\n    \"style\": {\n      \"position\": \"relative\",\n      \"display\": \"block\",\n      \"marginLeft\": \"auto\",\n      \"marginRight\": \"auto\",\n      \"maxWidth\": \"1001px\"\n    }\n  }, \"\\n      \", mdx(\"a\", {\n    parentName: \"span\",\n    \"className\": \"gatsby-resp-image-link\",\n    \"href\": \"/docs-4.2.1.16/static/a6d069f8ae98144214fe27cf4dc3ef7f/6acbf/UserCertificateAdded.png\",\n    \"style\": {\n      \"display\": \"block\"\n    },\n    \"target\": \"_blank\",\n    \"rel\": \"noopener\"\n  }, \"\\n    \", mdx(\"span\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-background-image\",\n    \"style\": {\n      \"paddingBottom\": \"71.42857142857143%\",\n      \"position\": \"relative\",\n      \"bottom\": \"0\",\n      \"left\": \"0\",\n      \"backgroundImage\": \"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAYAAAAvxDzwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB7ElEQVQ4y62TWW/bMAyA/f9/1h7atDmKNomPxGfsOEkty0cSn6m/QR4aDEO3vZTAB5IiJVEQqUVhOBxPR06n05DJlP3hSBAd2B/fOQmJt4vY7/fEcUx8iJEy/YohTQVCJIM2m055nDwOk8mE9WqFPn9Af5szm815fX1lsZhjmgZBEOB7Ho7jjLiug21vWS7fWK2WPD8/DS8vCzTdMAbLsrAsazAMA9M0R5Rt6Abr9ZrpbM7T85TZfIGu618xfGrter2S5zlZllNVFVXd0LYtTdPSth2Xa0VV1Xe6rqfv/452EAUr752le8I/SGSWk+XFSF6UJEJS1zV9fxs3qAPVRZ/86WtZUSBEihCCNJVIKRFpSpIkJIlAyoy8KDifz2RZhswkZVmOvkK97u5fLmi552A//EBYOk20ow4DroGLMNdIyyDbWqOvKJwNpWtT7Tzq0OfsOyTGmmxrUoU+lbtBa3Ye5cagCjy6fThS73wKe0PpbMm31ui3UUATBvRxdM9rdj6lveHsbuniiN420dq+5ztFUz+qZBiGb0Hruu57K1S9p9pCVarspmkoxl+9cLlcKYpyXFMxdfm/GPvws1Qlt9tt1HXdjAnqINX4Kv7x8fHf6lSOpkbrPmrGL22a1n0Elf17TNe/RsWWyyU/AWNmIms0IhZEAAAAAElFTkSuQmCC')\",\n      \"backgroundSize\": \"cover\",\n      \"display\": \"block\"\n    }\n  }), \"\\n  \", mdx(\"img\", {\n    parentName: \"a\",\n    \"className\": \"gatsby-resp-image-image\",\n    \"alt\": \"UserCertificatesAdded\",\n    \"title\": \"UserCertificatesAdded\",\n    \"src\": \"/docs-4.2.1.16/static/a6d069f8ae98144214fe27cf4dc3ef7f/6acbf/UserCertificateAdded.png\",\n    \"srcSet\": [\"/docs-4.2.1.16/static/a6d069f8ae98144214fe27cf4dc3ef7f/a2ead/UserCertificateAdded.png 259w\", \"/docs-4.2.1.16/static/a6d069f8ae98144214fe27cf4dc3ef7f/6b9fd/UserCertificateAdded.png 518w\", \"/docs-4.2.1.16/static/a6d069f8ae98144214fe27cf4dc3ef7f/6acbf/UserCertificateAdded.png 1001w\"],\n    \"sizes\": \"(max-width: 1001px) 100vw, 1001px\",\n    \"style\": {\n      \"width\": \"100%\",\n      \"height\": \"100%\",\n      \"margin\": \"0\",\n      \"verticalAlign\": \"middle\",\n      \"position\": \"absolute\",\n      \"top\": \"0\",\n      \"left\": \"0\"\n    },\n    \"loading\": \"lazy\",\n    \"decoding\": \"async\"\n  }), \"\\n  \"), \"\\n    \")), mdx(\"p\", null, \"7.3 Finishing steps\"), mdx(\"p\", null, \"Now restart browser and then hit an url with configured 'Certificate Authentication' and then client certificate will be send to server.\"), mdx(\"p\", null, \"Click 'OK' and you will see this dialog to send your certificate to server.\"));\n}\n;\nMDXContent.isMDXComponent = true;","tableOfContents":{},"parent":{"relativePath":"admin/2-authentication/12-certificateauth.md"},"frontmatter":{"metaTitle":"Configure Certificate Based Authentication","metaDescription":"This section describes how to configure Certificate based authentication"}},"allMdx":{"edges":[{"node":{"fields":{"slug":"/admin","title":"Administration guide"}}},{"node":{"fields":{"slug":"/appendix","title":"Appendix"}}},{"node":{"fields":{"slug":"/connectorconfig","title":"IdM Connectors"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice","title":"End user guide for SelfService portal"}}},{"node":{"fields":{"slug":"/changelog","title":"Change log"}}},{"node":{"fields":{"slug":"/getting-started","title":"Getting Started"}}},{"node":{"fields":{"slug":"/developerguide","title":"Developer Guide"}}},{"node":{"fields":{"slug":"/","title":"Welcome to the OpenIAM Documentation"}}},{"node":{"fields":{"slug":"/installation","title":"Installing OpenIAM"}}},{"node":{"fields":{"slug":"/ssocatalog","title":"SSO Catalog"}}},{"node":{"fields":{"slug":"/troubleshooting","title":"FAQ / Troubleshooting"}}},{"node":{"fields":{"slug":"/admin/0-login","title":"Logging in to the admin portal"}}},{"node":{"fields":{"slug":"/whatsnew","title":"What's new in OpenIAM"}}},{"node":{"fields":{"slug":"/admin/1-exportimport","title":"Import / Export"}}},{"node":{"fields":{"slug":"/admin/10-consent-management","title":"Consent management"}}},{"node":{"fields":{"slug":"/admin/10-password","title":"Password policy"}}},{"node":{"fields":{"slug":"/admin/12-administration","title":"Administration"}}},{"node":{"fields":{"slug":"/admin/1-usradmin","title":"User administration"}}},{"node":{"fields":{"slug":"/admin/13-selfregistration","title":"Self-registration"}}},{"node":{"fields":{"slug":"/admin/14-Help.Desk.User.Profile.Protection","title":"HelpDesk profile protection"}}},{"node":{"fields":{"slug":"/admin/16-admin-pswd-change","title":"Password reset for administrator's account"}}},{"node":{"fields":{"slug":"/admin/19-reports","title":"OpenIAM report services"}}},{"node":{"fields":{"slug":"/admin/18-services-passwd-change-k8","title":"Password update for OpenIAM services in Kubernetes"}}},{"node":{"fields":{"slug":"/admin/2-authentication","title":"Authentication"}}},{"node":{"fields":{"slug":"/admin/15-audit","title":"Audit"}}},{"node":{"fields":{"slug":"/admin/4-app-onboarding","title":"Application onboarding"}}},{"node":{"fields":{"slug":"/admin/3-authz","title":"Managing access"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle","title":"Automated provisioning"}}},{"node":{"fields":{"slug":"/admin/7-access-cert","title":"User access review"}}},{"node":{"fields":{"slug":"/admin/8-sso","title":"Federation / SSO to applications"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov","title":"Requests / Approval"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy","title":"Access gateway"}}},{"node":{"fields":{"slug":"/appendix/1-self-signedcert","title":"Generate Self-signed Cert"}}},{"node":{"fields":{"slug":"/appendix/2-openssl","title":"Install OpenSSL"}}},{"node":{"fields":{"slug":"/appendix/3-installopenldap","title":"Install OpenLDAP on Ubuntu"}}},{"node":{"fields":{"slug":"/changelog/12-Release-4.2.1.6","title":"Release 4.2.1.6"}}},{"node":{"fields":{"slug":"/changelog/13-Release-4.2.1.7","title":"Release 4.2.1.7"}}},{"node":{"fields":{"slug":"/changelog/14-Release-4.2.1.8","title":"Release 4.2.1.8"}}},{"node":{"fields":{"slug":"/changelog/11-Release-4.2.1.5","title":"Release 4.2.1.5"}}},{"node":{"fields":{"slug":"/changelog/15-Release-4.2.1.9","title":"Release 4.2.1.9"}}},{"node":{"fields":{"slug":"/appendix/4-prepforprod","title":"Prepare for Production"}}},{"node":{"fields":{"slug":"/changelog/16-Release-4.2.1.10","title":"Release 4.2.1.10"}}},{"node":{"fields":{"slug":"/changelog/17-Release-4.2.1.11","title":"Release 4.2.1.11"}}},{"node":{"fields":{"slug":"/changelog/18-Release-4.2.1.12","title":"Release 4.2.1.12"}}},{"node":{"fields":{"slug":"/changelog/19-Release-4.2.1.13","title":"Release 4.2.1.13"}}},{"node":{"fields":{"slug":"/changelog/20-Release-4.2.1.14","title":"Release 4.2.1.14"}}},{"node":{"fields":{"slug":"/changelog/22-Release-4.2.1.16","title":"Release 4.2.1.16"}}},{"node":{"fields":{"slug":"/connectorconfig/4-troubleshootingconnector","title":"Provisioning operations troubleshooting"}}},{"node":{"fields":{"slug":"/connectorconfig/2-configparam","title":"Connector parameters"}}},{"node":{"fields":{"slug":"/changelog/21-Release-4.2.1.15","title":"Release 4.2.1.15"}}},{"node":{"fields":{"slug":"/connectorconfig/LDAP","title":"LDAP connector"}}},{"node":{"fields":{"slug":"/connectorconfig/JDBC","title":"JDBC connector"}}},{"node":{"fields":{"slug":"/connectorconfig/SAPUME","title":"SAP UME connector"}}},{"node":{"fields":{"slug":"/connectorconfig/adp","title":"ADP connector"}}},{"node":{"fields":{"slug":"/connectorconfig/aerospike","title":"Aerospike connector"}}},{"node":{"fields":{"slug":"/connectorconfig/aws","title":"AWS connector"}}},{"node":{"fields":{"slug":"/connectorconfig/freeIPA","title":"FreeIPA connector"}}},{"node":{"fields":{"slug":"/admin/17-services-manual-passwd-change","title":"Manual password update for OpenIAM services in RPM"}}},{"node":{"fields":{"slug":"/connectorconfig/gsuite","title":"GSuite connector"}}},{"node":{"fields":{"slug":"/connectorconfig/linux","title":"Linux connector"}}},{"node":{"fields":{"slug":"/connectorconfig/oracle","title":"Oracle RDBMS connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft","title":"Microsoft Application Connectors"}}},{"node":{"fields":{"slug":"/connectorconfig/postgresql","title":"PostgreSQL connector"}}},{"node":{"fields":{"slug":"/connectorconfig/oracleebs","title":"Oracle EBS connector"}}},{"node":{"fields":{"slug":"/connectorconfig/rexx","title":"Rexx connector"}}},{"node":{"fields":{"slug":"/connectorconfig/scim","title":"SCIM connector"}}},{"node":{"fields":{"slug":"/connectorconfig/salesforce","title":"Salesforce.com connector"}}},{"node":{"fields":{"slug":"/connectorconfig/tableau","title":"Tableau connector"}}},{"node":{"fields":{"slug":"/connectorconfig/workday","title":"Workday connector"}}},{"node":{"fields":{"slug":"/developerguide/1-custom-css","title":"Customize Branding"}}},{"node":{"fields":{"slug":"/developerguide/10-OpenIAM-opensource-rep","title":"OpenIAM open source repository"}}},{"node":{"fields":{"slug":"/developerguide/2-api","title":"RESTful API"}}},{"node":{"fields":{"slug":"/developerguide/4-scheduledtasks","title":"Batch/Scheduled tasks"}}},{"node":{"fields":{"slug":"/developerguide/5-datamodel","title":"Data model"}}},{"node":{"fields":{"slug":"/developerguide/3-whitelisting","title":"Whitelisting packages"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization","title":"Synchronization Scripts"}}},{"node":{"fields":{"slug":"/developerguide/6-ide","title":"Script development using an IDE"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/1-login","title":"Logging in to SelfService portal"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice","title":"Operations via SelfService portal"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/6-singlesignon","title":"Single sign-on"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest","title":"Request management"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/7-useraccess","title":"User access rights"}}},{"node":{"fields":{"slug":"/getting-started/1-what_is_openiam","title":"What is OpenIAM?"}}},{"node":{"fields":{"slug":"/getting-started/2-productarchitecture","title":"Platform architecture"}}},{"node":{"fields":{"slug":"/getting-started/21-concepts","title":"Concepts"}}},{"node":{"fields":{"slug":"/getting-started/31-planning-workforce","title":"Discovery questions"}}},{"node":{"fields":{"slug":"/getting-started/3-install_openiam","title":"Installing OpenIAM"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding","title":"Application onboarding"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning","title":"Automated user provisioning"}}},{"node":{"fields":{"slug":"/getting-started/7-selfservice-pswd","title":"SelfService password reset"}}},{"node":{"fields":{"slug":"/getting-started/8-openiam-with-IdP","title":"Integrating OpenIAM with your IdP"}}},{"node":{"fields":{"slug":"/getting-started/5-connecting","title":"Connecting to an authoritative source"}}},{"node":{"fields":{"slug":"/getting-started/99-multifactor-authentication","title":"Configuring multi-factor authentication"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation","title":"Deploying via RPM on Linux"}}},{"node":{"fields":{"slug":"/getting-started/9-openiam-as-IdP","title":"Integrating OpenIAM as your IdP"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation","title":"Deploying via Docker"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation","title":"Deploying on OpenShift"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation","title":"Deploying to Kubernetes"}}},{"node":{"fields":{"slug":"/installation/8-sizing","title":"Sizing recommendations"}}},{"node":{"fields":{"slug":"/installation/9-data_migration","title":"OpenIAM data migration"}}},{"node":{"fields":{"slug":"/ssocatalog/Azure","title":"Azure SSO"}}},{"node":{"fields":{"slug":"/ssocatalog/Freshdesk","title":"Freshdesk SSO"}}},{"node":{"fields":{"slug":"/ssocatalog/AWS","title":"AWS SSO"}}},{"node":{"fields":{"slug":"/ssocatalog/Gsuite","title":"GSuite SSO"}}},{"node":{"fields":{"slug":"/ssocatalog/Salesforce","title":"Salesforce.com"}}},{"node":{"fields":{"slug":"/ssocatalog/okta","title":"Okta SSO"}}},{"node":{"fields":{"slug":"/ssocatalog/Office365","title":"Office365 SSO"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous","title":"Miscellaneous related articles"}}},{"node":{"fields":{"slug":"/troubleshooting/cluster","title":"Cluster"}}},{"node":{"fields":{"slug":"/troubleshooting/connectors","title":"Connectors"}}},{"node":{"fields":{"slug":"/troubleshooting/docker","title":"Docker Swarm"}}},{"node":{"fields":{"slug":"/troubleshooting/rpm","title":"RPM"}}},{"node":{"fields":{"slug":"/troubleshooting/operational","title":"Operational"}}},{"node":{"fields":{"slug":"/troubleshooting/v3_update","title":"Update from V3.X to V4.X"}}},{"node":{"fields":{"slug":"/troubleshooting/environment","title":"Environment"}}},{"node":{"fields":{"slug":"/whatsnew/10-v4218","title":"New in v4.2.1.8"}}},{"node":{"fields":{"slug":"/whatsnew/11-v4219","title":"New in v4.2.1.9"}}},{"node":{"fields":{"slug":"/whatsnew/13-v42111","title":"New in v4.2.1.11"}}},{"node":{"fields":{"slug":"/whatsnew/14-v42112","title":"New in v4.2.1.12"}}},{"node":{"fields":{"slug":"/whatsnew/15-v42113","title":"New in v4.2.1.13"}}},{"node":{"fields":{"slug":"/whatsnew/12-v42110","title":"New in v4.2.1.10"}}},{"node":{"fields":{"slug":"/whatsnew/16-v42115","title":"New in v4.2.1.15"}}},{"node":{"fields":{"slug":"/whatsnew/17-v42116","title":"New in v4.2.1.16"}}},{"node":{"fields":{"slug":"/whatsnew/7-v4215","title":"New in v4.2.1.5"}}},{"node":{"fields":{"slug":"/whatsnew/8-v4216","title":"New in v4.2.1.6"}}},{"node":{"fields":{"slug":"/connectorconfig/scriptConnector","title":"Groovy Script connector"}}},{"node":{"fields":{"slug":"/connectorconfig/sap","title":"SAP S/4 Hana connector"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/10-bulkoperations","title":"Bulk operations"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/1-createuser","title":"Creating a user"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/13-unlock-account","title":"Unlocking an account"}}},{"node":{"fields":{"slug":"/whatsnew/9-v4217","title":"New in v4.2.1.7"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/12-externaldelegation","title":"Organization level delegation"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/14-add-remove-entitlements","title":"Adding/Removing entitlements"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/15-rehireuserflow","title":"Rehire user flow"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/16-user-conversion","title":"User conversion"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/11-bulkentitlements","title":"Bulk operations with entitlements"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/17-newhireworkflow","title":"New hire workflow configuration"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/2-usertypes","title":"Custom user types"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/18-creating-new-dept-division","title":"Creating a new department or division"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/3-adminoperations","title":"Administrative actions on a User"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/5-finduser","title":"User search"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/4-pageconfiguration","title":"Configuring page templates"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/6-relatedAccount","title":"Related accounts"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/7-customfields","title":"Custom fields"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/8-serviceaccounts","title":"Service accounts"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/9-orphanmanagement","title":"Orphan management"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig","title":"System configuration"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management","title":"Mail management"}}},{"node":{"fields":{"slug":"/admin/12-administration/3-squence-generator","title":"Sequence generators"}}},{"node":{"fields":{"slug":"/admin/12-administration/4-otpconfig","title":"Configure OTP Provider"}}},{"node":{"fields":{"slug":"/admin/12-administration/5-links","title":"External links on login page"}}},{"node":{"fields":{"slug":"/admin/12-administration/6-languages","title":"Managing languages"}}},{"node":{"fields":{"slug":"/admin/12-administration/8-aboutopenIAM-page","title":"About OpenIAM Page"}}},{"node":{"fields":{"slug":"/admin/15-audit/1-audit-events-interpret","title":"Audit events interpretation"}}},{"node":{"fields":{"slug":"/admin/12-administration/99-heartbeat","title":"Heartbeat links"}}},{"node":{"fields":{"slug":"/admin/2-authentication/1-auth-overview","title":"Configuring authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/10-fidologin","title":"FIDO-2 authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/11-credentialprovider","title":"Credential provider"}}},{"node":{"fields":{"slug":"/admin/2-authentication/12-certificateauth","title":"Configuring Certificate Based Authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/13-criiptoauth","title":"Criipto Authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/16-external-multiselect-auth","title":"External/Multiselect authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/2-auth-policy","title":"Authentication policy"}}},{"node":{"fields":{"slug":"/admin/12-administration/9-reindex_elasticsearch","title":"Reindex Elasticsearch"}}},{"node":{"fields":{"slug":"/admin/2-authentication/2-delegatedauth","title":"Managed System authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/3-passwordauth","title":"Password-based authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/9-adaptiveauth","title":"Adaptive Authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/8-social","title":"Social authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/7-otp","title":"OTP over SMS or E-mail"}}},{"node":{"fields":{"slug":"/admin/3-authz/11-contentprovider","title":"Content provider"}}},{"node":{"fields":{"slug":"/admin/3-authz/10-accessright","title":"Access rights"}}},{"node":{"fields":{"slug":"/admin/3-authz/14-menus","title":"Menus"}}},{"node":{"fields":{"slug":"/admin/3-authz/1-overview","title":"Introduction to access control"}}},{"node":{"fields":{"slug":"/admin/3-authz/2-roles","title":"Managing roles"}}},{"node":{"fields":{"slug":"/admin/3-authz/3-groups","title":"Managing groups"}}},{"node":{"fields":{"slug":"/admin/3-authz/4-types","title":"Metadata types"}}},{"node":{"fields":{"slug":"/admin/3-authz/5-resources","title":"Managing resources"}}},{"node":{"fields":{"slug":"/admin/3-authz/6-organization","title":"Managing organizations"}}},{"node":{"fields":{"slug":"/admin/3-authz/8-accesstossoapps","title":"Access to SSO applications"}}},{"node":{"fields":{"slug":"/admin/4-app-onboarding/1-Automated-applications","title":"Connected applications"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/1-synch","title":"Configuring synchronization"}}},{"node":{"fields":{"slug":"/admin/4-app-onboarding/2-Manual-applications","title":"Manual applications"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/10-managedsystemsimulation","title":"Managed system simulation mode"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/11-provisioning-config","title":"Configure Provisioning"}}},{"node":{"fields":{"slug":"/admin/3-authz/9-approvalflow","title":"Configuring approval workflows"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/2-incrementalsynch","title":"Incremental synchronization"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/4-birthright","title":"Birthright access"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/3-recon","title":"Configure reconciliation"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/5-recon-groovy","title":"Groovy Scripts for Reconciliation"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/6-managedsystem-config","title":"Managed system configuration"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/8-importentitlements","title":"Import entitlements"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/9-importorganization","title":"Import Organizations"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/12-LDAP-managedsys-config","title":"LDAP Managed system configuration"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/1-application-category","title":"Application categories"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/2-approval-flow","title":"Approval flow"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/3-manualTasks","title":"Manual tasks"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/5-approve-by-email","title":"Approving requests via Email"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/7-questionnaire","title":"Questionnaire"}}},{"node":{"fields":{"slug":"/admin/7-access-cert/1-entitlmentcert","title":"Entitlement based certification"}}},{"node":{"fields":{"slug":"/admin/7-access-cert/2-usercert","title":"User based review"}}},{"node":{"fields":{"slug":"/admin/6-requestapprov/4-post-request","title":"After request has been approved"}}},{"node":{"fields":{"slug":"/admin/7-access-cert/3-certification-reporting","title":"Certification reporting"}}},{"node":{"fields":{"slug":"/admin/8-sso/5-auth_scopes","title":"OpenIAM oAuth scopes"}}},{"node":{"fields":{"slug":"/admin/8-sso/2-oauth2","title":"oAuth 2.0"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/1-formfill","title":"Form Fill"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/2-headerinj","title":"Header Injection"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/3-urlrewriting","title":"URL Rewriting"}}},{"node":{"fields":{"slug":"/admin/8-sso/3-oidc","title":"OpenID Connect"}}},{"node":{"fields":{"slug":"/admin/8-sso/1-saml","title":"Add SAML SP to OpenIAM"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/7-rProxy-loadbalancer","title":"Reverse Proxy with Load Balancer"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/8-kerberos","title":"Setting up Kerberos via rProxy"}}},{"node":{"fields":{"slug":"/admin/9-r-Proxy/6-example","title":"Examples"}}},{"node":{"fields":{"slug":"/admin/2-authentication/14-duo-auth","title":"Duo Authentication"}}},{"node":{"fields":{"slug":"/admin/2-authentication/15-modernauth","title":"Microsoft Modern authentication"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/1-powershellconnectorinstallation","title":"Installing PowerShell connectors"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/10-winlocal","title":"WinLocal OpenIAM connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/12-dynamics365FO","title":"Dynamics365 Finance&Operations connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/12-WindowsPasswordFilter","title":"AD Password Filter"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/13-successfactors","title":"SuccessFactors connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/14-psgraph","title":"Microsoft Graph PowerShell connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/15-powershell-generic","title":"Building a custom PowerShell connector for OpenIAM"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/16-teams","title":"Microsoft Teams connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/2-powershellconnectorsusage","title":"Using PowerShell connectors"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/3-powershellconnectorupdate","title":"Updating PowerShell connectors"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/7-azuredevops","title":"Azure DevOps connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/6-exchange","title":"Exchange connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/8-dynamics365","title":"Dynamics365 connector"}}},{"node":{"fields":{"slug":"/connectorconfig/scriptConnector/connector-request-template","title":"OpenIAM connector request template"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/9-sqlserver","title":"Microsoft SQL Server connector"}}},{"node":{"fields":{"slug":"/connectorconfig/scriptConnector/GroovyScriptConnector","title":"Configuring Groovy Script connector"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/5-azuread","title":"Entra ID/O365 connector"}}},{"node":{"fields":{"slug":"/developerguide/1-custom-css/1-customcss","title":"Creating custom CSS"}}},{"node":{"fields":{"slug":"/developerguide/1-custom-css/2-cssexamples","title":"CSS file examples"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python","title":"Getting started with Python"}}},{"node":{"fields":{"slug":"/developerguide/5-datamodel/1-usermodel","title":"User data model"}}},{"node":{"fields":{"slug":"/developerguide/5-datamodel/2-rbacmodel","title":"Access control model"}}},{"node":{"fields":{"slug":"/developerguide/4-sheduledtasks/1-provision-on-date","title":"Provision/Deprovision on date"}}},{"node":{"fields":{"slug":"/developerguide/4-sheduledtasks/2-access-certification-reminder","title":"Notification reminders for approvers"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman","title":"Getting started with Postman"}}},{"node":{"fields":{"slug":"/developerguide/4-sheduledtasks/3-UAR-campaign-cancel","title":"Deleting User Access Campaign"}}},{"node":{"fields":{"slug":"/developerguide/8-api/access-certification","title":"/webconsole - access-certification"}}},{"node":{"fields":{"slug":"/developerguide/8-api/access-right","title":"/webconsole - access-right"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java","title":"Getting started with Java"}}},{"node":{"fields":{"slug":"/developerguide/8-api/approver-association","title":"/webconsole - approver-association"}}},{"node":{"fields":{"slug":"/developerguide/8-api/audit-log","title":"/webconsole - audit-log"}}},{"node":{"fields":{"slug":"/developerguide/8-api/authentication-grouping","title":"/webconsole - authentication-grouping"}}},{"node":{"fields":{"slug":"/developerguide/8-api/auth-provider","title":"/webconsole - auth-provider"}}},{"node":{"fields":{"slug":"/developerguide/8-api/batch","title":"/webconsole - batch"}}},{"node":{"fields":{"slug":"/developerguide/8-api/challenge-response","title":"/webconsole - challenge-response"}}},{"node":{"fields":{"slug":"/developerguide/8-api/connector","title":"/webconsole - connector"}}},{"node":{"fields":{"slug":"/developerguide/8-api/content-provider","title":"/webconsole - content-provider"}}},{"node":{"fields":{"slug":"/developerguide/8-api/elastic-search","title":"/webconsole - elastic-search"}}},{"node":{"fields":{"slug":"/developerguide/8-api/email","title":"/webconsole - email"}}},{"node":{"fields":{"slug":"/developerguide/8-api/groovy-manager","title":"/webconsole - groovy-manager"}}},{"node":{"fields":{"slug":"/developerguide/8-api/group","title":"/webconsole - group"}}},{"node":{"fields":{"slug":"/developerguide/8-api/field","title":"/webconsole - field"}}},{"node":{"fields":{"slug":"/developerguide/8-api/idp-oauth","title":"/idp - idp-oauth"}}},{"node":{"fields":{"slug":"/developerguide/8-api/idp-rest","title":"/idp - idp-rest"}}},{"node":{"fields":{"slug":"/developerguide/8-api/it-policy","title":"/webconsole - it-policy"}}},{"node":{"fields":{"slug":"/developerguide/8-api/menu","title":"/webconsole - menu"}}},{"node":{"fields":{"slug":"/developerguide/8-api/metadata","title":"/webconsole - metadata"}}},{"node":{"fields":{"slug":"/developerguide/8-api/managed-system","title":"/webconsole - managed-system"}}},{"node":{"fields":{"slug":"/developerguide/8-api/oauth","title":"/webconsole - oauth"}}},{"node":{"fields":{"slug":"/developerguide/8-api/organization-type","title":"/webconsole - organization-type"}}},{"node":{"fields":{"slug":"/developerguide/8-api/property-value","title":"/webconsole - property-value"}}},{"node":{"fields":{"slug":"/developerguide/8-api/report","title":"/webconsole - report"}}},{"node":{"fields":{"slug":"/developerguide/8-api/page-template","title":"/webconsole - page-template"}}},{"node":{"fields":{"slug":"/developerguide/8-api/resource-type","title":"/webconsole - resource-type"}}},{"node":{"fields":{"slug":"/developerguide/8-api/resource","title":"/webconsole - resource"}}},{"node":{"fields":{"slug":"/developerguide/8-api/role","title":"/webconsole - role"}}},{"node":{"fields":{"slug":"/developerguide/8-api/policy","title":"/webconsole - policy"}}},{"node":{"fields":{"slug":"/developerguide/8-api/organization","title":"/webconsole - organization"}}},{"node":{"fields":{"slug":"/developerguide/8-api/sync-config","title":"/webconsole - sync-config"}}},{"node":{"fields":{"slug":"/developerguide/8-api/system","title":"/webconsole - system"}}},{"node":{"fields":{"slug":"/developerguide/8-api/sync-rest","title":"/webconsole - sync-rest"}}},{"node":{"fields":{"slug":"/developerguide/8-api/uri-pattern","title":"/webconsole - uri-pattern"}}},{"node":{"fields":{"slug":"/developerguide/8-api/ui-theme","title":"/webconsole - ui-theme"}}},{"node":{"fields":{"slug":"/developerguide/8-api/user","title":"/webconsole - user"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/1-autoprov","title":"Automated provisioning Scripts"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import","title":"Import from application"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/3-importing_groups","title":"Importing groups from application"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/4-relations-with-manager","title":"Populating a manager"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/2-updateprofile","title":"Updating user profile"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/1-forgotpassword","title":"Forgot password"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/3-changepassword","title":"Updating your password"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/4-outofoffice","title":"Out of office assistant"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/6-updatesecquestions","title":"Updating security questions"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/10-positionchange","title":"Position change request"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/1-servicecatalog","title":"Requesting access via catalog"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/11-accessprofiles","title":"Access profiles"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/2-jobprofile","title":"Requesting access from profile"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/2-selfservice/5-forgotusername","title":"Forgot username"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/12-bulkupload","title":"Uploading users in bulk"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/5-approverequest","title":"Approving requests"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/6-requestadministration","title":"Request administration"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/9-newuser","title":"Creating a new user"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/7-useraccess/1-viewmyaccess","title":"View my access"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/8-newgroup","title":"Creating a group request"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/4-createrequest/7-requesthistory","title":"Requests history"}}},{"node":{"fields":{"slug":"/end-user-guide-for-selfservice/7-useraccess/2-directreports","title":"View direct reports"}}},{"node":{"fields":{"slug":"/getting-started/31-planning-workforce/1-designrole","title":"Designing business roles"}}},{"node":{"fields":{"slug":"/getting-started/31-planning-workforce/2-openiam-access-role","title":"Designing access roles"}}},{"node":{"fields":{"slug":"/getting-started/31-planning-workforce/3-connector-planning","title":"Connector requirements"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial","title":"Automated provisioning tutorial"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/1-https","title":"Configuring HTTPS on Docker"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/1-jml","title":"Joiners, movers, leavers processes"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/2-Configuration-options","title":"Configuration options in Docker"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/3-upgrading","title":"Upgrading OpenIAM in Docker environment"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/5-docker-swarm-backup","title":"Backup / restore in Docker Swarm"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/4-YAML-files","title":"Docker YAML files"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/6-externalDB","title":"Installing OpenIAM with a remote database in Docker"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/11-configuration-options","title":"Configuration options in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/10-ha-rpm","title":"High availability (HA) deployment using RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/2-rproxy","title":"r-Proxy installation in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/4-backup","title":"RPM backup / recovery"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/5-ports","title":"Deployment architecture in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading","title":"Upgrading OpenIAM in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-migrating-non-production-to-production-environment","title":"Migrating non-production to production environment in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/7-remoteDB","title":"Installing OpenIAM with a remote database in RPM environment"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/9-rabbitssl","title":"Enable TLS for RabbitMQ in RPM"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/1-create-cluster","title":"Creating an OpenShift cluster on Azure"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/2-connect-to-cluster","title":"Connect to OpenShift cluster on Azure"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/8-ssl","title":"Configuring HTTPS in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/1-singlenode","title":"Single VM Install"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/3-deploy-OpenIAM-helm","title":"Deploy OpenIAM to OpenShift cluster with Helm"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/5-localhost-dev-cluster","title":"Localhost development cluster"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/4-some-descriptions-helm","title":"Memory requirements for OpenShift deployment with Helm"}}},{"node":{"fields":{"slug":"/installation/7-OpenShift-installation/6-deploy-from-windows","title":"Deploy OpenIAM to OpenShift cluster with Helm (from Windows)"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/10-backup-and-restoration","title":"Backup and restoration procedure in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/11-common-scenario","title":"Installing OpenIAM in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/1-ssl","title":"Configuring HTTPS in Kubernetes"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/2-deployment-with-terraform","title":"Deploying OpenIAM with Terraform"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/12-vault-migration-fromRPM-toK8","title":"Migration of Vault from RPM-based cluster to Kubernetes-based OpenIAM cluster"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/3-depl-without-terraform","title":"Deploying OpenIAM on Kubernetes using Helm"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/4-RabbitMQ-TLS","title":"RabbitMQ TLS directory in Kubernetes"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/6-k8platforms","title":"Kubernetes Platforms"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/7-useal-keys-restoration","title":"Backing up and restoring the vault unseal keys in Kubernetes"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/9-remoteDB","title":"Installing OpenIAM with a remote database in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/5-upgrading","title":"Upgrading OpenIAM in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/8-sizing/1-small-k8","title":"Small Enterprise - K8"}}},{"node":{"fields":{"slug":"/installation/8-sizing/2-medium-k8","title":"Medium Enterprise - K8"}}},{"node":{"fields":{"slug":"/installation/9-data_migration/1-migrating_ES_Docker","title":"Verifying and migrating Elasticsearch data in Docker-based OpenIAM cluster"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/8-AKS_with_ext_MSSQL","title":"Deploying OpenIAM on AKS (Kubernetes) with an external MSSQL database"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous/02-hardening","title":"Securing your installation"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous/01-log4j","title":"Log4j Vulnerability"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous/03-db-switch","title":"Change OpenIAM product database"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous/05-postgres-install","title":"Installing PostgreSQL 15"}}},{"node":{"fields":{"slug":"/troubleshooting/cluster/1-rabbitmq-reinit","title":"RabbitMQ cluster went out of order"}}},{"node":{"fields":{"slug":"/installation/9-miscellaneous/04-compatibility","title":"Compatibility matrix"}}},{"node":{"fields":{"slug":"/troubleshooting/cluster/2-rabbitmq-UI","title":"RabbitMQ is not reached from UI in RPM installations"}}},{"node":{"fields":{"slug":"/troubleshooting/docker/1-connectorlogs","title":"View container logs"}}},{"node":{"fields":{"slug":"/troubleshooting/connectors/sync-vs-async-source","title":"Synchronous vs. asynchronous synchronization source for connectors"}}},{"node":{"fields":{"slug":"/troubleshooting/docker/2-containersrestart","title":"Containers Restarting"}}},{"node":{"fields":{"slug":"/troubleshooting/cluster/3-Rabbitmq-connection-timeout","title":"RabbitMQ  connection timeout issue"}}},{"node":{"fields":{"slug":"/troubleshooting/docker/3-uninstall","title":"Remove an OpenIAM Docker Install"}}},{"node":{"fields":{"slug":"/troubleshooting/docker/4-troubleshooting-steps","title":"Troubleshooting steps in a container-based cluster"}}},{"node":{"fields":{"slug":"/troubleshooting/docker/5-log-checking-guide","title":"Docker log checking guide"}}},{"node":{"fields":{"slug":"/troubleshooting/environment/disableswap","title":"Disable swap"}}},{"node":{"fields":{"slug":"/troubleshooting/environment/memoryutili","title":"Check memory utilization"}}},{"node":{"fields":{"slug":"/troubleshooting/environment/redismemory","title":"Redis memory utilization"}}},{"node":{"fields":{"slug":"/troubleshooting/rpm/trobleshooting_guide","title":"Troubleshooting guide for RPM"}}},{"node":{"fields":{"slug":"/troubleshooting/rpm/failed-dependencies","title":"Failed dependencies"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/access-after-migration","title":"Access problem after migrating OpenIAM"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/access-forbidden","title":"Access Forbidden error"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/audit-doc-timestamp","title":"Audit document timestamp issue"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/JDBC-connection-pool","title":"Increasing the JDBC connection pool size"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/activationlink","title":"Error when sending activation link"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/database-reset","title":"Database reset"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/auth-manager","title":"Backend exception error when running authentication manager"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/flyway_version","title":"Flyway version issue"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/increasing-RAM","title":"Increasing memory for OpenIAM services"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/elasticsearch-readonly-state","title":"Elasticsearch read-only state"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/modifly_system_labels_and_messages","title":"Changing system labels and messages"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/lackof_disk_space","title":"Running out of disk space"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/my-application-page-selfservice","title":"Changing refresh time for My Applications page in SelfService"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/overriding-app-properties","title":"Overriding UI application properties"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/remove-navigation-bar","title":"Removing menu items from top navigation bar"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/resetting_passwords","title":"Resetting passwords"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/run_flyway_repair_mode","title":"Run Flyway in repair mode"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/report-generation-issue","title":"Error during report generating in RPM installations"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/pad-block-corrupted","title":"PAD Block Corrupted"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/unlocksysadmin","title":"Unlock sysadmin"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/1-connect","title":"Deploying and registering connectors"}}},{"node":{"fields":{"slug":"/troubleshooting/operational/username_in_selfservice","title":"Username not shown in SelfService"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements","title":"Importing users and their entitlement memberships"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements","title":"Importing entitlements"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/4-pageconfiguration/2-customuserpage","title":"Creating more custom user edit pages"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/4-pageconfiguration/1-userpage","title":"Configuring user page templates"}}},{"node":{"fields":{"slug":"/admin/1-usradmin/4-pageconfiguration/4-customtemplates","title":"Custom form templates"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/1-system","title":"System tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/3-UI","title":"UI tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/5-organization-tab","title":"Organization tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/6-password","title":"Password tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/7-authentication","title":"Authentication tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/4-workflow","title":"Workflow tab"}}},{"node":{"fields":{"slug":"/admin/12-administration/1-sysconfig/8-auditeventstosyslog","title":"Exporting Audit Events to Syslogs"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management/2-smtpconfig","title":"Mailbox Configuration"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management/3-multilanguagemail","title":"Multilanguage emails"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management/1-emailtemplates","title":"Email templates"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management/4-mail-via-azure","title":"Mailbox configuration via Azure application"}}},{"node":{"fields":{"slug":"/admin/12-administration/2-mail-management/5-alert-notifications","title":"Configuring alert notifications"}}},{"node":{"fields":{"slug":"/admin/2-authentication/8-social/1-googlesociallogin","title":"Google Social Login"}}},{"node":{"fields":{"slug":"/admin/2-authentication/8-social/2-facebooksociallogin","title":"Facebook Social Login"}}},{"node":{"fields":{"slug":"/admin/3-authz/14-menus/1-enduseraccess","title":"End-user access roles"}}},{"node":{"fields":{"slug":"/admin/2-authentication/8-social/3-linkedinsociallogin","title":"LinkedIn Social Login"}}},{"node":{"fields":{"slug":"/admin/3-authz/14-menus/2-adminaccess","title":"Admin access role"}}},{"node":{"fields":{"slug":"/admin/2-authentication/8-social/4-appleidsociallogin","title":"AppleID Social Login"}}},{"node":{"fields":{"slug":"/admin/3-authz/14-menus/3-FAQ","title":"FAQs about menus and their use"}}},{"node":{"fields":{"slug":"/admin/3-authz/2-roles/1-role-types","title":"Types of roles existing in OpenIAM"}}},{"node":{"fields":{"slug":"/admin/3-authz/3-groups/1-create-group","title":"Creating a group"}}},{"node":{"fields":{"slug":"/admin/4-app-onboarding/2-Manual-applications/1-reg-applications","title":"Register applications"}}},{"node":{"fields":{"slug":"/admin/8-sso/1-saml/1-jit-provisioning","title":"Just-in-time Provisioning"}}},{"node":{"fields":{"slug":"/admin/8-sso/2-oauth2/1-Auth-code-grand","title":"Authorization code grant type"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/10-winlocal/1-winlocalv4","title":"Version 4"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/2-postmanconfig","title":"Create Postman collection"}}},{"node":{"fields":{"slug":"/admin/5-lifecycle/11-provisioning-config/1-prepost-processor","title":"Pre/PostProcessor"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/1-createauthprovider","title":"Create OpenIAM Provider for Postman"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/3-add-request","title":"Define an API request in Postman"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/4-JWT-tokens","title":"Getting started with JWT tokens in Postman"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/1-createauthprovider","title":"Create OpenIAM oAuth provider in Python"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/10-winlocal/2-winlocalv5","title":"Version 5"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/2-grantinguathz","title":"Granting authorization to the API with Python"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/3-api-call-examples","title":"API calls examples in Python"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/6-example","title":"Client credentials flow with a defined scope in Postman"}}},{"node":{"fields":{"slug":"/developerguide/2-api/1-postman/5-postman-links","title":"Postman API documentation links"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/4-enabling-disabling-user","title":"Enabling/Disabling a user with API calls examples in Python"}}},{"node":{"fields":{"slug":"/admin/3-authz/2-roles/5-importingroles","title":"Importing roles"}}},{"node":{"fields":{"slug":"/admin/3-authz/2-roles/2-createrole","title":"Create role"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/5-object-oriented-impl-example","title":"Object oriented implementation for REST API in Python"}}},{"node":{"fields":{"slug":"/admin/3-authz/2-roles/3-findrole","title":"Finding an existing role"}}},{"node":{"fields":{"slug":"/developerguide/2-api/2-python/6-OTP-verification","title":"OTP Verification in Python"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java/1-createauthprovider","title":"Create OpenIAM Provider"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java/3-creating-searching-users","title":"Creating and searching a user with API call in Java"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java/4-calls-examples","title":"API calls examples in Java"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java/5-enabling-disabling-users","title":"Enabling/Disabling a user with API calls examples in Java"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/1-autoprov/1-newhires","title":"New hires"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import/3-azuread","title":"Entra ID"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import/6-importroles","title":"Import Roles"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/1-provisioningCSV","title":"Creating a synchronization configuration for the source"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/2-policymap","title":"Policy map"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/4-birthright","title":"New hire"}}},{"node":{"fields":{"slug":"/developerguide/2-api/3-java/2-grantauthz","title":"Granting authorization to the API with Java"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/3-creatingrole","title":"Creating role"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/5-transfer","title":"Transfer"}}},{"node":{"fields":{"slug":"/getting-started/6-automatedprovisioning/2-tutorial/6-termination","title":"Terminations"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/3-upgrading/1-upgrade-4219","title":"Upgrade from version 4.2.1.5-4.2.1.8 to version 4.2.1.10 in Docker"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/3-upgrading/3-upgrade-42111","title":"Upgrade from version 4.2.1.10 to version 4.2.1.11 in Docker"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/3-upgrading/2-upgrade-42110","title":"Upgrade from version 4.2.1.9 to version 4.2.1.10 in Docker"}}},{"node":{"fields":{"slug":"/installation/2-docker-installation/3-upgrading/4-upgrade-42116","title":"Upgrade from version 4.2.1.x to version 4.2.1.16 in Docker"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/1-singlenode/1-rpm-with-internet","title":"Installation with Internet Access"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/1-singlenode/2-rpm-no-internet","title":"Installation without Internet Access"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/1-singlenode/3-nonroot-partition","title":"Installing OpenIAM on a non-root partition"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/5-ports/1-one-node","title":"Single node deployment"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/3-upgradingto-42111","title":"Upgrading from versions 4.2.1.9-4.2.1.10 to version 4.2.1.11 in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/2-upgradingto-42110","title":"Upgrading from version 4.2.1.5-4.2-4.2.1.8 to version 4.2.1.10 in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/4-upgradingto-42112","title":"Upgrading from versions 4.2.1.x to version 4.2.1.12 in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/5-ports/2-three-node","title":"Three node cluster"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/4-migrating-index-data","title":"Migration of index data from older ElasticSearch versions to newer one"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/5-upgradingto-42116","title":"Upgrading from versions 4.2.1.x to version 4.2.1.16 in RPM"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/1-databasemigration","title":"Database migration from version 3.X to 4.X"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/5-infrastructure_upgrade","title":"Infrastructure upgrade"}}},{"node":{"fields":{"slug":"/installation/1-rpm-installation/6-upgrading/6-infra-upgrade-42113","title":"Infrastructure upgrade in v4.2.1.13"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/5-upgrading/3-upgrade-42113k8-rabbitmq","title":"Upgrading from version below 4.2.1.8 to version 4.2.1.13 in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/5-upgrading/4-upgrade-42116k8","title":"Upgrading from versions 4.2.1.x to version 4.2.1.16 in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/5-upgrading/5-upgrade-42112k8","title":"Upgrading from version 4.2.1.x to version 4.2.1.12 in Kubernetes environment"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/6-k8platforms/2-aws","title":"AWS Kubernetes guide"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/6-k8platforms/4-azure","title":"Azure Kubernetes Guide"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/6-k8platforms/1-gce","title":"GCE Kubernetes guide"}}},{"node":{"fields":{"slug":"/installation/6-kubernetes-installation/6-k8platforms/3-helm","title":"Private Kubernetes Cluster using Helm"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/1-connect/2-rpm","title":"Connectors via RPM"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/1-connect/3-docker","title":" Connectors via Docker"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/1-connect/4-k8","title":" Connectors via Kubernetes"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements/3-troubleshooting","title":"Troubleshooting"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements/1-config-synch","title":"Configuring synchronization for importing users and their entitlement memberships"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements/2-transformationscripts","title":"Transformation scripts"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements/3-common-questions","title":"Common questions"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements/2-transformationscripts","title":"Transformation scripts"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements/1-configuring-synch","title":"Configuring synchronization for importing entitlements"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import/ldap/1-ldapvalidation","title":"Synchronization Validation Script"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements/2-transformationscripts/1-ADgroup-transformation","title":"Sample transformation script for AD groups"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/2-importentitlements/2-transformationscripts/2-csv-transformation","title":"Sample transformation script for a CSV file"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import/ldap/2-ldapsynchusers","title":"LDAP User Synchronization Script"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements/2-transformationscripts/3-ADtransformation-usergroup","title":"Sample transformation script for AD users and group memberships"}}},{"node":{"fields":{"slug":"/developerguide/9-synchronization/2-import/ldap/3-ldapattributeslists","title":"LDAP Attribute list for User Synchronization"}}},{"node":{"fields":{"slug":"/getting-started/4-application-onboarding/3-importusers-and-entitlements/2-transformationscripts/4-csv-users-entitlements","title":"Sample transformation script for a CSV file"}}},{"node":{"fields":{"slug":"/connectorconfig/microsoft/4-adpowershell","title":"Active Directory PowerShell connector"}}},{"node":{"fields":{"slug":"/appendix/5-message_en_file","title":"Message properties"}}}]}},"pageContext":{"id":"10b2eb8f-7eb8-5826-a2f5-f3770270b077"}},
    "staticQueryHashes": ["2619113677","3706406642","417421954"]}