web-dev-qa-db-ja.com

Pidgin、OpenLDAP、ユーザーが自分のパスワードを変更する

私の問題は、OpenLDAPに要約されると思います。ユーザーがPidginチャットクライアントを使用してパスワードを変更できるようにしたいと思います。現時点では、彼らのパスワードを設定する必要があり、それは苦痛です。 OpenLDAPは正常に動作します。私の設定は以下のとおりです。

ユーザーがパスワードを変更しようとすると、Pidginから403が禁止されます。このエラーが発生してもOpenLDAPログには何も起こらないため、リクエストがそこに到達することはないと思います。これはPidginからのログです:

(14:08:01) Jabber: Sending (ssl) ([email protected]/b660f5a6): <iq type='set' id='purple711c2157' to='xx.com'><query xmlns='Jabber:iq:register'><username>test.account</username><password>22</password></query></iq>

(14:08:01) Jabber: Recv (ssl)(302): <iq type="error" id="purple711c2157" from="xx.com" to="[email protected]/b660f5a6"><query xmlns="Jabber:iq:register"><username>test.account</username><password>22</password></query><error code="403" type="auth"><forbidden xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></iq>

これは私のslapd.confです:

# This is the main slapd configuration file. See slapd.conf(5) for more
# info on the configuration options.

# Features to permit
#allow bind_v2

# Schema and objectClass definitions
include         /etc/ldap/schema/core.schema
include         /etc/ldap/schema/cosine.schema
include         /etc/ldap/schema/nis.schema
include         /etc/ldap/schema/inetorgperson.schema

# Where the pid file is put. The init.d script
# will not stop the server if you change this.
pidfile         /var/run/slapd/slapd.pid

#     List of arguments that were passed to the server
argsfile        /var/run/slapd/slapd.args

# Read slapd.conf(5) for possible values
loglevel       0

# Where the dynamically loaded modules are stored
modulepath  /usr/lib/ldap
moduleload  back_hdb

# The maximum number of entries that is returned for a search operation
sizelimit 500

# The tool-threads parameter sets the actual amount of cpu's that is used
# for indexing.
tool-threads 1

#######################################################################
# Specific Backend Directives for hdb:
# Backend specific directives apply to this backend until another
# 'backend' directive occurs
backend     hdb

#######################################################################
# Specific Directives for database #1, of type hdb:
# Database specific directives apply to this databasse until another
# 'database' directive occurs
database        hdb

# The base of your directory in database #1
suffix          "dc=xx,dc=com"

# rootdn directive for specifying a superuser on the database. This is needed
# for syncrepl.
# rootdn          "cn=admin,dc=vo,dc=srfarm,dc=net"

rootdn  "cn=admin,dc=xx,dc=com"
rootpw  xXxXxXxX

# Where the database file are physically stored for database #1
directory       "/var/lib/ldap"

# The dbconfig settings are used to generate a DB_CONFIG file the first
# time slapd starts.  They do NOT override existing an existing DB_CONFIG
# file.  You should therefore change these settings in DB_CONFIG directly
# or remove DB_CONFIG and restart slapd for changes to take effect.

# For the Debian package we use 2MB as default but be sure to update this
# value if you have plenty of RAM
dbconfig set_cachesize 0 2097152 0

# Number of objects that can be locked at the same time.
dbconfig set_lk_max_objects 1500
# Number of locks (both requested and granted)
dbconfig set_lk_max_locks 1500
# Number of lockers
dbconfig set_lk_max_lockers 1500

# Indexing options for database #1
index default eq,pres
index           objectClass eq
index       uid,cn,member

# Save the time that the entry gets modified, for database #1
lastmod         on

# Checkpoint the BerkeleyDB database periodically in case of system
# failure and to speed slapd shutdown.
checkpoint      512 30

# The userPassword by default can be changed
# by the entry owning it if they are authenticated.
# Others should not be able to see it, except the
# admin entry below
# These access lines apply to database #1 only
access to attrs=userPassword,shadowLastChange
        by dn="cn=admin,dc=xx,dc=com" write
        by anonymous auth
        by self write
        by * none

# Ensure read access to the base for things like
# supportedSASLMechanisms.  Without this you may
# have problems with SASL not knowing what
# mechanisms are available and the like.
# Note that this is covered by the 'access to *'
# ACL below too but if you change that as people
# are wont to do you'll still need this if you
# want SASL (and possible other things) to work 
# happily.
access to dn.base="" by * read

# The admin dn has full write access, everyone else
# can read everything.
access to *
    by self write
        by dn="cn=admin,dc=xx,dc=com" write
        by * read

誰かアイデアはありますか?

3
matt

ここでの問題はPidginやOpenLDAPではなく、Openfireです(タグに基づいて使用していると推測しています)。外部LDAPユーザーへの変更は一切サポートしていません。パスワードの直接変更は、ローカルで定義されたユーザーに対してのみ機能します。

ここ を参照してください:

Openfireは、LDAPディレクトリを読み取り専用として扱います。

1
Shane Madden