« TestLink:ログインページ等の日本語化 | Main | MERGEリクエストが失敗しました »

2008.05.27

TestLink:LDAPで認証

TestLinkの認証をLDAPのパスワードにて行うようにする場合。

例えばApacheのBasic認証にて以下のような設定を行っているとした場合。

AuthBasicProvider ldap
AuthLDAPUrl ldap://localhost:389/dc=testsvr?uid
AuthLDAPBindDN "cn=Manager,dc=testsvr"
AuthLDAPBindPassword ldappassword

config.inc.phpファイルの内容を以下のように設定します。

$g_login_method = 'LDAP';

$g_ldap_server = 'localhost';
$g_ldap_port = '389';
$g_ldap_root_dn = 'dc=testsvr';
$g_ldap_organization = '';
$g_ldap_uid_field = 'uid';
$g_ldap_bind_dn = 'cn=Manager,dc=testsvr';
$g_ldap_bind_passwd = 'ldappassword';

こうすれば、パスワードの情報を他のアプリケーション(LDAPに対応している必要はありますが)と共通化することができます。なお、LDAPの認証を行うようにした場合、当然ながらTestLinkからはパスワードの変更を行うことはできなくなります。

|

« TestLink:ログインページ等の日本語化 | Main | MERGEリクエストが失敗しました »

Subversion・Trac・etc.」カテゴリの記事

Comments

The comments to this entry are closed.

TrackBack


Listed below are links to weblogs that reference TestLink:LDAPで認証:

« TestLink:ログインページ等の日本語化 | Main | MERGEリクエストが失敗しました »