ユーザマニュアル

【9/16開催】Pleasanter User Meet Up#11 プリザンター×MCPサーバ 「プリザンターをもっと活用するために」資料ダウンロード 「プリザンター入門」発売中!

2026/09/08

MANUAL

LDAP認証を利用する

## 概要 所属組織のユーザ認証基盤としてActive DirectoryなどのLDAPサーバを利用できる場合、プリザンターのユーザ認証をLDAPサーバで行えます。LDAP認証を設定している場合、プリザンターは下図の1.~3.のように動作します。 ![](https://pleasanter.org/binaries/39c98395e89d4a908aaaea5b5eb2c872) 一般的に、LDAPサーバはイントラネット内に存在するため、LDAPサーバを利用して認証を行う場合はプリザンターをイントラネットに構築する必要があります。 ### LDAP認証の設定 LDAP認証を行うには、[Authentication.json](/ja/manual/authentication-json)を例えば以下のように設定してください。 ```json { "Provider": "LDAP", "DsProvider": null, "ServiceId": null, "ExtensionUrl": null, "RejectUnregisteredUser": false, "LdapParameters": [ { "LdapSearchRoot": "LDAP://ldap.example.local/ou=Company,dc=example,dc=local", "LdapSearchProperty": "sAMAccountName", "LdapSearchPattern": null, "LdapLoginPattern": null, "LdapAuthenticationType": null, "NetBiosDomainName": "EXAMPLE", "LdapTenantId": 1, "LdapDeptCode": "Company", "LdapDeptCodePattern": null, "LdapDeptName": "department", "LdapDeptNamePattern": null, "LdapUserCode": null, "LdapUserCodePattern": null, "LdapFirstName": "givenName", "LdapFirstNamePattern": null, "LdapLastName": "sn", "LdapLastNamePattern": null, "LdapMailAddress": "mail", "LdapMailAddressPattern": null, "LdapGroupName": "cn", "LdapGroupNamePattern": null, "LdapSyncPageSize": 0, "LdapSyncPatterns": [ "(&(ObjectCategory=User)(ObjectClass=Person))" ], "LdapSyncGroupPatterns": [ "(&(ObjectCategory=Group))" ] "LdapExcludeAccountDisabled": false, "AutoDisable": false, "AutoEnable": false, "LdapSyncUser": "Administrator", "LdapSyncPassword": "********" } ], ~~ 中略 ~~ } ``` ### ローカル認証とLDAP認証の併用 [Authentication.json](/ja/manual/authentication-json)のパラメータ「Provider」の値が「LDAP+Local」に設定されている場合、LDAP認証を試みた後にローカル認証を試みます。これにより、LDAPサーバに登録されていないユーザをローカルユーザとして登録し、両方の方式でユーザ認証を行えます。 ### プリザンターとLDAPサーバ間の暗号化 プリザンターとLDAPサーバ間の通信がLDAPを使用して行われる場合、入力されたログインIDとパスワードが平文で送信されます。通信内容を暗号化するには、LDAPS を使用してください。LDAPSを使用するには、[Authentication.json](/ja/manual/authentication-json)のパラメータ「LdapSearchRoot」を以下のように設定します。 ```json { ~~ 中略 ~~ "LdapParameters": [ { "LdapSearchRoot": "LDAPS://ldap.example.local:636/ou=Company,dc=example,dc=local", ~~ 中略 ~~ } ], ~~ 中略 ~~ } ``` ## 関連情報 <div id="ManualList"><ul><li><a href="/ja/manual/authentication-json">パラメータ設定:Authentication.json</a><span>2026/04/15 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />
TOP